InboxKit
  1. Prewarm
InboxKit
  • Introduction
  • Order
    • Place Order
      POST
  • Webhook
    • Status Change Webhook
      POST
  • Account
    • Get account details
      GET
  • Workspaces
    • List workspaces
      GET
    • Get workspace details
      GET
    • Create workspace
      POST
    • Update workspace
      PUT
    • Delete workspace
      DELETE
    • Update workspace webhook
      POST
  • Domains
    • Search available domains
      POST
    • Check if domain is banned from registration
      GET
    • Check domain availability
      GET
    • Register domains
      POST
    • List domains
      POST
    • List assignable domains
      GET
    • Set DMARC policy
      POST
    • Remove DMARC policy
      DELETE
    • Remove domains
      POST
    • Set domain forwarding
      POST
    • Set email forwarding
      POST
    • Remove email forwarding
      DELETE
    • Set catch-all email
      POST
    • Remove catch-all email
      DELETE
    • Get nameservers for domain connection
      POST
    • Check nameservers propagation
      POST
  • Mailboxes
    • List mailboxes
    • Show mailbox credentials
    • Get mailbox details
    • Buy mailboxes
    • Check mailbox status
    • Cancel mailboxes
    • Update mailbox
    • Update mailbox profile picture
    • Generate TOTP
    • Change username
    • Change password
    • Check mailbox availability
  • DNS
    • Get DNS records
    • Add DNS records
    • Update DNS records
    • Delete DNS records
  • Sequencers
    • Export mailboxes status
    • List sequencer platforms
    • List sequencers
    • Export mailboxes
    • Add sequencer
    • Update sequencer
    • Delete sequencers
  • Billing
    • Get pricing plans
    • Get subscription details
    • Change subscription plan
    • Cancel subscription
    • Get wallet details
    • Add credits to wallet
    • Update auto top-up settings
    • Get billing portal link
  • Consent Request
    • Initiate Consent Request
    • Get Consent Request Status
    • List Consent Requests
  • Tags
    • Assign tags to domains or mailboxes
    • Get all tags
    • Create a new tag
    • Delete a tag
  • Prewarm
    • Search Domains
      POST
    • Search Mailboxes
      POST
    • Buy Prewarmed Mailboxes
      POST
    • Check Order Status
      GET
  1. Prewarm

Check Order Status

Developing
GET
https://api.inboxkit.com/v1/api/prewarm/order-status/{order_uid}
Maintainer:Not configured
Check Order Status

Request

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

Header Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.inboxkit.com/v1/api/prewarm/order-status/' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "error": false,
    "message": "Order status retrieved successfully",
    "data": {
        "order_uid": "550e8400-e29b-41d4-a716-446655440000",
        "status": "completed",
        "buyer": {
            "team_uid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
            "team_name": "Acme Corporation",
            "workspace_uid": "123e4567-e89b-12d3-a456-426614174000",
            "workspace_name": "Production Workspace"
        },
        "domains": [
            {
                "domain_id": "507f1f77bcf86cd799439011",
                "domain_name": "example-business.com",
                "mailboxes_count": 5,
                "dns_records_count": 12,
                "consent_screen_url": "https://consent.example.com/oauth/authorize?client_id=abc123"
            },
            {
                "domain_id": "507f1f77bcf86cd799439012",
                "domain_name": "marketing-domain.net",
                "mailboxes_count": 3,
                "dns_records_count": 8,
                "consent_screen_url": null
            }
        ],
        "sequencer_uid": "98765432-1234-5678-9abc-def012345678",
        "stats": {
            "total_domains": 2,
            "total_mailboxes": 8,
            "total_dns_records": 20
        },
        "pricing": {
            "price_per_mailbox": 8.5,
            "total_price": 68
        },
        "processing": {
            "started_at": "2024-01-15T10:30:00.000Z",
            "completed_at": "2024-01-15T10:35:22.000Z",
            "error_message": null
        },
        "createdAt": "2024-01-15T10:25:00.000Z",
        "updatedAt": "2024-01-15T10:35:22.000Z"
    }
}
Modified at 2025-10-09 13:34:25
Previous
Buy Prewarmed Mailboxes
Built with