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
Example request
{
"body": [
"ORDER-001",
"ORDER-002",
"ORDER-003"
]
}Response
Batch order transactions job initiated successfully
Example response
{
"jobId": 1748392
}