GET
/
email
/
domains
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>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

The response is of type object[].