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

Remove domain

DELETE
/domains/{id}
Removes a domain from your account and from Cloudflare. Cannot remove a domain that has active or pending mailbox requests.

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
Domain removed
Body

🟠404
🟠422
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE '/domains/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "success": true,
    "data": {
        "message": "Domain removed successfully"
    }
}
Modified at 2026-03-12 08:23:25
Previous
Get domain
Next
Verify domain NS propagation
Built with