Skip to content

Returns all regions and their email addresses.

GET
/api/mailbox/regions

Authorizations

Responses

Success

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())