Validate DKIM and SPF for a domain
PUT/domain/dns/check
This endpoint validates DKIM and SPF records for the given domain.
Request
- application/json
Body
required
domain string
Responses
- 200
- 400
- 401
DKIM and SPF validation result
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
dkim object
status string
dns object[]
type string
name string
value string
spf object
status string
dns object[]
type string
name string
value string
{
"dkim": {
"status": "Invalid",
"dns": [
{
"type": "CNAME",
"name": "tec1._domainkey.",
"value": "tec1.dkim.tinyemail.com"
}
]
},
"spf": {
"status": "Valid",
"dns": [
{
"type": "TXT",
"name": "@",
"value": "\"v=spf1 include:_spf.google.com include:_spf.tinyemail.com include:spf.autopilothq.com include:one.zoho.com -all\""
}
]
}
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Some error message"
}
API key is missing or invalid
Loading...