curl --request GET \
--url https://incoming.qomon.app/v1/transaction_bundles/{id}/history \
--header 'Authorization: Bearer <token>'{
"status": "success",
"data": {
"id": 123,
"CreatedAt": "2023-11-07T05:31:56Z",
"transaction_bundle_id": 123,
"kind": "<string>",
"target_id": 123,
"old": {},
"new": {}
}
}Retrieve the complete change history for a transaction bundle. The history tracks:
Each history entry includes:
kind: Type of change (transaction, transaction_status, donation, membership)old: Previous state (null for creations)new: New state (null for deletions)target_id: ID of the affected itemcurl --request GET \
--url https://incoming.qomon.app/v1/transaction_bundles/{id}/history \
--header 'Authorization: Bearer <token>'{
"status": "success",
"data": {
"id": 123,
"CreatedAt": "2023-11-07T05:31:56Z",
"transaction_bundle_id": 123,
"kind": "<string>",
"target_id": 123,
"old": {},
"new": {}
}
}Documentation Index
Fetch the complete documentation index at: https://qomon-86428773.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of transaction bundle for which the history should be fetched
Was this page helpful?