Get a domain
Get /settings/domains/{sending}
URL parameters:
Name | Description | Type | Mandatory |
---|---|---|---|
sending | Domain name with extension | String | Yes |
Response:
Name | Description | Type |
---|---|---|
id | Domain id | String |
sending | Domain name | String |
tracking | Tracking domain name | String |
createdAt | Datetime on timestamp format | Int |
updatedAt | Datetime on timestamp format | Int |
verifiedDkim | If the DKIM is validated or not | Boolean |
verifiedSpf | If the SPF is validated or not | Boolean |
verifiedMx | If the MX record is validated or not | Boolean |
verifiedA | If the A record is validated or not | Boolean |
verifiedTracking | If the Tracking with CNAME record is validated or not | Boolean |
verifiedDomain | If the domain is verified with email confirmation | Boolean |
default | If the domain is used as default or not | Boolean |
Programming language:
Response exemple:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | { "sending" : "example.com" , "tracking" : "link.example.com" , "id" : "5582ec34683235ce71e4b4e3" , "createdAt" : 1434643507, "updatedAt" : 1435764352, "verifiedDkim" : true , "verifiedMx" : true , "verifiedA" : true , "verifiedSpf" : true , "verifiedTracking" : true , "verifiedDomain" : true , "default" : true } |