Transactions
Bulk void inflight
Void multiple independently-created inflight transactions with the Python SDK.
POST
Bulk void inflight
Use
blnk.transactions.bulk_void_inflight to void multiple inflight transactions.
Call the method
- Queued void
- Synchronous void
blnk.transactions.bulk_void_inflight
| Field | Type | Description |
|---|---|---|
transaction_ids | string[] | Up to 100 inflight transaction IDs to void. |
skip_queue | bool | When True, process synchronously instead of queuing. |
Review per-item results
Check
response.data["results"] for each transaction’s outcome. Failed items include a code and message without stopping the rest of the batch.Response
200 OK
| Field | Type | Description |
|---|---|---|
succeeded | number | Number voided successfully. |
failed | number | Number that failed. |
results | list[dict] | Per-transaction outcome in request order. |
results[].status | str | succeeded or failed. |
results[].code | str | Failure code (for example NOT_FOUND, ALREADY_COMMITTED, NOT_INFLIGHT). |
results[].message | str | Human-readable failure message. |
Related docs
Bulk inflight updates
Per-item failure codes and rollback behavior.
Bulk void inflight
HTTP request and response schema.