Transactions
Bulk commit inflight
Commit multiple independently-created inflight transactions with the Python SDK.
POST
Bulk commit inflight
Use
blnk.transactions.bulk_commit_inflight to commit multiple inflight transactions.
Call the method
- Queued commit
- Synchronous commit
blnk.transactions.bulk_commit_inflight
| Field | Type | Description |
|---|---|---|
transactions | list[dict] | Up to 100 inflight transactions to commit. |
transactions[].transaction_id | str | Inflight transaction ID to commit. |
transactions[].amount | number | Partial commit amount. Omit to commit the full remaining inflight amount. |
transactions[].precise_amount | number | Precision-applied partial commit amount. Takes precedence over amount. |
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 committed 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_VOIDED, INVALID_AMOUNT). |
results[].message | str | Human-readable failure message. |
Related docs
Bulk inflight updates
Per-item failure codes and when to use batch updates.
Bulk commit inflight
HTTP request and response schema.