POST
/
{domain}
cURL
curl --request POST \
  --url https://api.contiguity.com/domains/{domain} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "region": "us-east-1",
  "custom_return_path": "contiguity"
}'
{
  "id": "req_xxxxxxxxxxxxxxxx",
  "timestamp": 1756076560866,
  "api_version": "v2025.8.24",
  "object": "response",
  "data": {
    "records": [
      {
        "name": "@",
        "type": "MX",
        "value": "inbound-smtp.us-east-1.amazonaws.com",
        "purpose": "Inbound Email"
      }
    ],
    "status": "pending_verification",
    "region": "us-east-1",
    "created_at": 1755637604526
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

domain
string
required

Domain to register

Example:

"example.com"

Body

application/json

Response

200
application/json

Register a domain for email sending

The response is of type object.