Retrieve domain details
GET/v1/domain/:domain
Get details of a specific domain including mailer ID, sending records, and receiving records
Request
Path Parameters
domain stringrequired
Domain Name
Responses
- 200
- 400
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
mailer_id string
message string
receiving_records
object
property name*
object
key string
type string
value string
verified boolean
sending_records
object
property name*
object
key string
type string
value string
verified boolean
verified boolean
{
"mailer_id": "string",
"message": "event success",
"receiving_records": {},
"sending_records": {},
"verified": true
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
records
object
property name*
object
key string
type string
value string
verified boolean
success boolean
{
"error": "Invalid DNS records",
"records": {},
"success": false
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
error string
records
object
property name*
object
key string
type string
value string
verified boolean
success boolean
{
"error": "Invalid DNS records",
"records": {},
"success": false
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
records
object
property name*
object
key string
type string
value string
verified boolean
success boolean
{
"error": "Invalid DNS records",
"records": {},
"success": false
}
Loading...