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 status

POST
https://api.inboxkit.com/v1/api/sequencers/export/status
Maintainer:Not configured
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.inboxkit.com/v1/api/sequencers/export/status' \
--header 'Content-Type: application/json' \
--data-raw '{
    "limit": 25,
    "offset": 0,
    "status": "completed",
    "sequencer_uid": "seq_123456789",
    "mailbox_uids": [
        "mb_123456789",
        "mb_987654321"
    ],
    "uids": [
        "exp_111",
        "exp_222"
    ]
}'
Response Response Example
{
    "error": false,
    "message": "Export status retrieved successfully",
    "data": [
        {
            "_id": "string",
            "uid": "exp_123456789",
            "sequencer_uid": "seq_123456789",
            "sequencer_platform": "lemlist",
            "sequencer_name": "Campaign 1",
            "sequencer_platform_name": "Lemlist",
            "sequencer_logo": "https://example.com/logo.png",
            "mailbox_uid": "mb_123456789",
            "mailbox_email": "[email protected]",
            "mailbox_count": 1,
            "status": "completed",
            "error_message": "string",
            "attempts": 1,
            "completed_at": "2019-08-24T14:15:22Z",
            "created_at": "2019-08-24T14:15:22Z",
            "updated_at": "2019-08-24T14:15:22Z"
        }
    ],
    "pagination": {
        "total": 25,
        "limit": 50,
        "offset": 0,
        "hasMore": false
    }
}

Request

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

Examples

Responses

🟢200Success
application/json
Body

Modified at 2025-08-07 13:35:49
Previous
Delete DNS records
Next
List sequencer platforms
Built with