InboxedUp - API
  1. Domains
InboxedUp - API
  • Account
    • Get account overview
      GET
  • Subscriptions
    • List active subscriptions
      GET
    • Update subscription notes
      PATCH
  • Domains
    • Submit domains
      POST
    • List domains
      GET
    • Get domain
      GET
    • Remove domain
      DELETE
    • Verify domain NS propagation
      POST
    • Get batch status
      GET
  • Mailboxes
    • Request mailboxes
      POST
    • List mailbox requests
      GET
    • Get mailbox request
      GET
  • Schemas
    • Error
    • MailboxEntry
  1. Domains

Verify domain NS propagation

POST
/domains/{id}/verify
Manually triggers a Cloudflare NS propagation check for a domain. If the domain has propagated, the status will be updated to ACTIVE. If this completes a batch, the next queued batch will automatically be submitted to Cloudflare.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Verification result
Body

🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/domains//verify' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "success": true,
    "data": {
        "domain": "yourdomain.com",
        "status": "ACTIVE",
        "message": "Domain is now active"
    }
}
Modified at 2026-03-12 08:23:25
Previous
Remove domain
Next
Get batch status
Built with