Skip to main content

Get Transaction Receipt

This endpoint returns the receipt (PDF + metadata) of one of the BaaS TEDs that QI Tech executed for an integralization. A single integralization cycle (investor payment → fees → disbursement) can produce multiple TEDs — pick the one you want with the transaction_type query parameter.

If multiple TEDs of the same type were executed for the same integralization (e.g., several extraordinary_event_payment), this endpoint returns only the most recent one. To list all of them, use Get Integralization Transactions.


Get Transaction Receipt (GET)

Request

ENDPOINT
/account_liquidation/integralization/INTEGRALIZATION-KEY/transaction_receipt
METHOD
GET

Path Params

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

Query Params

FieldTypeDescriptionRequired
transaction_typestringType of TED to fetch. transaction_type enumsYes

Response

STATUS
200
Response Body
{
"transaction_key": "46804f32-101e-4702-8fbc-c2dbc4c2caec",
"transaction_amount": 12345.67,
"transaction_status": "settled",
"pdf_encoded_string": "JVBERi0xLi4u..."
}

Response Body Params

FieldTypeDescription
transaction_keystringUnique BaaS-side TED key — same value returned by consulta-transacoes-integralizacao.
transaction_amountnumberTED amount as recorded by QI Tech.
transaction_statusstringTED status on the BaaS side (e.g., settled, paid).
pdf_encoded_stringstringBank receipt as a base64-encoded string. Decode it to retrieve the PDF.

transaction_type enums

EnumDescription
disbursementTED that delivered the issuer's net amount to the issuer's bank account.
bookkeeping_fee_internalTED to QI CTVM for the internal bookkeeping fee.
bookkeeping_fee_externalTED to the client's external bookkeeping account.
structuring_feeTED to the client's structuring account.
extraordinary_event_paymentTED to an investor for an extraordinary settlement event.

Errors

HTTPCodeWhen
400HTTPMissingParamThe transaction_type query parameter was not provided.
400HTTPInvalidParamtransaction_type is not one of the allowed values.
404ACL000004 (IntegralizationTransactionNotFound)No TED of the requested type exists for the integralization, OR the integralization was never settled (no TEDs).
note

A 404 with ACL000004 is returned identically in every scenario (unknown key, never-settled integralization, or missing TED type) — by design, we don't differentiate the cases. To check whether an integralization exists, list its transactions first.