List all custom domains for your organization, including their verification status and DNS records.
cURL
curl --request GET \ --url https://api.open.cx/email/domains \ --header 'Authorization: Bearer <token>'
[ { "domainName": "<string>", "domainNameVerificationStatus": "pending", "records": [ { "type": "<string>", "name": "<string>", "value": "<string>", "ttl": "<string>", "status": "<string>" } ] } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The response is of type object[].
object[]
Was this page helpful?