InboxKit
  1. Sequencers
InboxKit
  • Introduction
  • 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
      POST
    • List sequencer platforms
      GET
    • List sequencers
      POST
    • Export mailboxes
      POST
    • Add sequencer
      POST
    • Update sequencer
      POST
    • Delete sequencers
      POST
  • 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
  1. Sequencers

Export mailboxes

POST
https://api.inboxkit.com/v1/api/sequencers/export
Maintainer:Not configured
Connect sequencers to specified mailboxes (export sequencers for use)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.inboxkit.com/v1/api/sequencers/export' \
--header 'X-Workspace-Id;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "sequencer_uid": "a95bbeff-25f8-4fb6-900a-b151da980gg8",
    "mailbox_uids": [
        "0f563225-9d5a-44d8-ba62-13838a9e5a2c"
    ]
}'
Response Response Example
{
    "error": false,
    "message": "Successfully created 2 export jobs for processing",
    "results": {
        "total_mailboxes": 2,
        "new_exports_created": 2,
        "duplicate_exports_skipped": 0,
        "weekly_limit_reached": 0,
        "active_exports_to_this_sequencer": 0,
        "weekly_export_limit": 5
    },
    "exports": {
        "created": [
            {
                "uid": "f81c2a21-33d7-44f5-b88e-0d928a84b9b2",
                "sequencer_uid": "c72f891b-9f4a-4f27-8e0e-3f24b23b832a",
                "mailbox_uid": "5a1e2a6d-58fb-4f77-99c6-58ed17bca85a",
                "mailbox_email": "[email protected]",
                "status": "queued",
                "client_id_processed": false,
                "created_at": "2025-08-02T14:45:12.123Z"
            },
            {
                "uid": "2a3d97e5-812d-44f7-8cd4-b7a12b6579de",
                "sequencer_uid": "c72f891b-9f4a-4f27-8e0e-3f24b23b832a",
                "mailbox_uid": "c3f92d54-2ad0-48f7-bf31-f1e3f83a6b15",
                "mailbox_email": "[email protected]",
                "status": "queued",
                "client_id_processed": false,
                "created_at": "2025-08-02T14:45:12.456Z"
            }
        ],
        "duplicates": []
    }
}

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

🟢200OK
application/json
Queued to be exported to sequencers soon
Body

🟠400Bad Request
🟠401Unauthorized
🟠404Record Not Found
🔴500Server Error
Modified at 2025-08-02 14:35:42
Previous
List sequencers
Next
Add sequencer
Built with