Returns all regions and their email addresses.
Authorization
api_key
cURL
curl -X GET \
'http://localhost/api/mailbox/regions'
Samples
cURL
curl -X GET http://localhost/api/mailbox/regions
JavaScript
fetch("http://localhost/api/mailbox/regions")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/mailbox/regions");
Python
import requests
response = requests.get("http://localhost/api/mailbox/regions")
print(response.json())