Get Integralization Transactions
This endpoint returns metadata for every BaaS TED executed by QI Tech for an integralization — without the PDF. Useful for discovering how many receipts exist, in what order they were executed, and their transaction_key. To get the PDF for a specific TED, use Get Transaction Receipt.
The response is in chronological order (created_at ASC) and includes every TED in the cycle (disbursement, fees, and extraordinary events). When multiple TEDs of the same type exist (e.g., several extraordinary_event_payment), all of them appear here — unlike the receipt endpoint, which returns only the most recent.
Get Transactions (GET)
Request
ENDPOINT
/account_liquidation/integralization/INTEGRALIZATION-KEY/transactionsMETHOD
GETPath Params
| Field | Type | Description | Characters |
|---|---|---|---|
INTEGRALIZATION-KEY | string | Unique integralization key (UUID v4). | 36 |
Response
STATUS
200Response Body
[
{
"transaction_key": "46804f32-101e-4702-8fbc-c2dbc4c2caec",
"external_id": "072a7cc4-1fbf-419b-8a41-f57bd86ee753",
"transaction_amount": 12345.67,
"transaction_type": "disbursement",
"transaction_status": "paid",
"created_at": "2026-05-05T13:22:01"
}
]
Response Body Params
| Field | Type | Description |
|---|---|---|
transaction_key | string | Unique BaaS-side TED key. |
external_id | string | integralization_key the TED belongs to. |
transaction_amount | number | TED amount as recorded by QI Tech. Do not treat as the authoritative value for accounting reconciliation. |
transaction_type | string | TED type. transaction_type enums |
transaction_status | string | Current TED status (e.g., paid, settled). |
created_at | string | Record creation timestamp (ISO 8601). |