Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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>"
}
]
}
]List all custom domains for your organization, including their verification status and DNS records.
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.
Was this page helpful?