Transactions
Bulk void inflight
Void multiple independently-created inflight transactions with the Go SDK.
POST
Bulk void inflight
Use
client.Transaction.BulkVoidInflight to void multiple inflight transactions.
Call the method
- Queued void
- Synchronous void
client.Transaction.BulkVoidInflight
| Field | Type | Description |
|---|---|---|
TransactionIDs | []string | Up to 100 inflight transaction IDs to void. |
SkipQueue | bool | When true, process synchronously instead of queuing. |
Review per-item results
Check
result.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 | object[] | Per-transaction outcome in request order. |
results[].status | string | succeeded or failed. |
results[].code | string | Failure code (for example NOT_FOUND, ALREADY_COMMITTED, NOT_INFLIGHT). |
results[].message | string | Human-readable failure message. |
Related docs
Bulk inflight updates
Per-item failure codes and rollback behavior.
Bulk void inflight
HTTP request and response schema.