Skip to main content

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/transactions
METHOD
GET

Path Params

FieldTypeDescriptionCharacters
INTEGRALIZATION-KEYstringUnique integralization key (UUID v4).36

Response

STATUS
200
Response 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

FieldTypeDescription
transaction_keystringUnique BaaS-side TED key.
external_idstringintegralization_key the TED belongs to.
transaction_amountnumberTED amount as recorded by QI Tech. Do not treat as the authoritative value for accounting reconciliation.
transaction_typestringTED type. transaction_type enums
transaction_statusstringCurrent TED status (e.g., paid, settled).
created_atstringRecord creation timestamp (ISO 8601).