InboxKit
  1. Order
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
    • Search Mailboxes
    • Buy Prewarmed Mailboxes
    • Check Order Status
  1. Order

Place Order

POST
https://api.inboxkit.com/v1/api/orders
Maintainer:Not configured

Request

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

Body Params application/json

Examples

Responses

🟢201Created
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.inboxkit.com/v1/api/orders' \
--header 'X-Workspace-Id: <YOUR_WORKSPACE_UID>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "contact_details": {
        "first_name": "Okey",
        "last_name": "DuBuque",
        "email": "[email protected]",
        "phone": "(594) 797-0083",
        "organization": "ipsum laborum eiusmod culpa tempor",
        "address_line1": "incididunt sunt minim",
        "address_line2": "laborum do tempor",
        "city": "Shannonview",
        "state": "Oregon",
        "country": "Japan",
        "postal_code": "96538"
    },
    "domains": [
        {
            "name": "nvMtjDvpU.czlZucODdDv",
            "redirect_url": "https://cultivated-hydrolyze.net/",
            "registration_years": 5,
            "contact_details": {
                "first_name": "Octavia",
                "last_name": "Rippin",
                "email": "[email protected]",
                "phone": "(520) 495-3049",
                "organization": "do ipsum laboris",
                "address_line1": "culpa irure",
                "address_line2": "velit non cupidatat",
                "city": "Johnstonbury",
                "state": "Massachusetts",
                "country": "Poland",
                "postal_code": "21658-6550"
            },
            "mailboxes": [
                {
                    "email": "[email protected]",
                    "first_name": "Mattie",
                    "last_name": "Doyle",
                    "platform": "GOOGLE",
                    "sequencer_uid": "22",
                    "profile_pic_url": "https://loremflickr.com/400/400?lock=6875166819662371"
                }
            ]
        }
    ]
}'
Response Response Example
Successful Domain Queued
[
    {
        "order_id": "ord_1234567890",
        "status": "mydomain.com queued",
        "message": "Domain queued for registration and mailbox creation.",
        "domain": "mydomain.com",
        "platform": "GOOGLE",
        "mailboxes": [
            "[email protected]",
            "[email protected]"
        ],
        "registration_years": 2
    }
]
Modified at 2025-09-01 10:55:35
Previous
Introduction
Next
Status Change Webhook
Built with