Retrieve a domain

GET/account/domains/{domain_id}

Retrieves the account's custom domain by its public ID.

An account has at most one custom domain, and its ID is fixed for the account. Use the ID returned by the list operation. Any other ID returns 404 Not Found.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

domain_id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/account/domains/string"
{  "data": {    "dns": {      "name": "string",      "target": "string",      "type": "CNAME"    },    "hostname": "string",    "id": "string",    "object": "domain",    "processing": true,    "status": "not_configured",    "updated_at": "2019-08-24T14:15:22Z",    "verifiable": true  }}