Skip to main content
Available in version 0.14.2 and later.
Use the bulk inflight endpoints to commit or void many independently-created inflight transactions in one request. For a single inflight transaction, use the Update inflight API instead. Important distinction: Bulk inflight updates are for multiple individual transactions. If you created inflight transactions through the Bulk transactions API, commit them using that batch’s batch_id via the single update endpoint, not the bulk inflight endpoints.

Bulk commit

To bulk commit in one request, use:
Bulk commit inflight
Each request accepts a maximum of 100 items in the transactions array.
From Blnk Core 0.15.0, bulk commit and void go through the queue by default.
When using the queue, Blnk validates each inflight transaction and enqueues a commit job. The response returns immediately; the queued status means the job is queued, not committed. Parents stay INFLIGHT until workers create APPLIED children.Per item results:
Failures are per-item. One does not block the batch.
200 Queued
The worker later creates APPLIED child records for each committed item. Verify outcomes with webhooks or polling - same as single commit and void.

Bulk void

To bulk void in one request, use:
Bulk void inflight
Bulk void expects a transaction_ids array, not the transactions shape used by bulk commit. Each request accepts a maximum of 100 IDs in the transaction_ids array.
By default, Blnk uses the queue to process each item. The response returns immediately; the queued status means the job is queued, not committed. Parents stay INFLIGHT until workers create APPLIED children.Per item results:
200 Queued

Error handling

Structured errors are available from Blnk Core 0.15.0 and later.
Bulk inflight endpoints return 400 when the request body fails validation before processing starts. Per-item failures return 200 with failed entries in results[]; one failed item does not block the batch.
Bulk commit expects a transactions array. Bulk void expects transaction_ids. Sending the wrong shape returns TXN_BULK_EMPTY because unrecognized fields are dropped.
400 Bad Request
To resolve the error:
Single inflight commit and void errors like TXN_COMMIT_AMOUNT_EXCEEDED apply when you use Update inflight instead of these bulk endpoints. See Commit & void inflight - Error handling and API error codes.

Need help?

We are very happy to help you make the most of Blnk, regardless of whether it is your first time or you are switching from another tool. To ask questions or discuss issues, please contact us or join our Discord community.