Skip to main content
PATCH
Update a transaction bundle
Additive updates: items not included in the request arrays are left unchanged. Updating an existing item: include its id plus all required fields — omitted required fields may be cleared. Adding a new item: omit id. Partial refund: PATCH the transaction with the reimbursed status and reimbursed_amount, and update the amount on the linked membership or donation. Full cancellation: DELETE /v1/transaction_bundles/{id} then recreate with POST /v1/transaction_bundles.

Authorizations

Authorization
string
header
required

OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.

Path Parameters

id
integer<int64>
required

Transaction bundle ID.

Required range: x >= 0
Example:

42

Body

application/json
data
object
required

Response

OK

data
object
required
status
string
required

Operation result.

Example:

"success"

Last modified on July 7, 2026