3b11e1670d61

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-107844420.7 KB
Batches

Order Transactions Batch Job

Retrieve the full transaction history (payments, rewards, refunds) for up to 1,000 orders in a single call. The job runs asynchronously — the endpoint returns a jobId immediately. Poll the batch status endpoint to retrieve results.

Security: Requires apiKey and secretKey headers (secret key required on v4.1; on v4.0 required when High Security Mode is enabled).

post/api/v4.0/integrations/batch/orders/transactions

Request body

bodystring[] required

Order IDs to retrieve. Min 1, max 1,000 items.

Example request

{
  "body": [
    "ORDER-001",
    "ORDER-002",
    "ORDER-003"
  ]
}

Response

Batch order transactions job initiated successfully

jobIdnumber

The assigned job ID, which is later used for status verification and response retrieval.

Example response

{
  "jobId": 1748392
}