Verify domain
POSTapi.blutui.com/v1/agencies/{username}/domains/{id}/verify
Check the verification status for a domain in your agency.
Path parameters
idstringrequired
The domain ID to verify the status of.
Response
import Blutui from 'blutui'
const blutui = new Blutui('ey....')
blutui.agency('studio').domains.verify('9c17d680-e0af-4f00-9e28-08c4e38e89e0')
{
"object": "domain_state",
"verified": true,
"message": "DNS correctly configured",
}
{
"object": "domain_state",
"verified": false,
"message": "A record not configured",
}
{
"object": "domain_state",
"verified": false,
"message": "TXT verification not found.",
}
objectstring
This will always contain domain_status
for this endpoint.
verifiedboolean
Determine if the domain is verified.
messagestring
Additional information about the current verification state of the domain.
Last updated on