PUT
/
email
/
domains
curl --request PUT \
  --url https://api.open.cx/email/domains \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "domainName": "<string>"
}'
{
  "domainRecords": [
    {
      "type": "<string>",
      "name": "<string>",
      "value": "<string>",
      "ttl": "<string>",
      "status": "<string>"
    }
  ],
  "domainStatus": "pending"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

The response is of type object.