Ir al contenido

List registered domains

GET
/v1/domains
curl --request GET \
--url https://api.mailerdash.com/v1/domains \
--header 'Authorization: Bearer <token>'

Returns domains registered for this key. Admin sees all domains.

List of domains with verification status

Media type application/json
Array<object>
object
domain
string
key_id
string
token
string
verified
boolean
created_at
string
verified_at
string
nullable
Example generated
[
{
"domain": "example",
"key_id": "example",
"token": "example",
"verified": true,
"created_at": "example",
"verified_at": "example"
}
]

Unauthorized