查询认缴交易列表
此端点返回 QI Tech 为某次认缴执行的所有 BaaS TED 元数据 — 不包含 PDF。适用于了解凭证数量、执行顺序及对应的 transaction_key。如需获取某笔 TED 的 PDF,请使用 查询交易凭证。
响应按时间顺序排列(created_at 升序),包含本周期内的所有 TED(拨付、费用与特殊事件)。当存在多笔同类型 TED(如多笔 extraordinary_event_payment)时,全部都会出现在此处 — 与凭证端点不同(凭证端点仅返回最新一笔)。
查询交易列表 (GET)
Request
ENDPOINT
/account_liquidation/integralization/INTEGRALIZATION-KEY/transactionsMÉTODO
GETPath Params
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
INTEGRALIZATION-KEY | string | 认缴的唯一键(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
| 字段 | 类型 | 描述 |
|---|---|---|
transaction_key | string | BaaS 侧 TED 的唯一键。 |
external_id | string | 该 TED 所属的 integralization_key。 |
transaction_amount | number | QI Tech 记录的 TED 金额。请勿用作会计对账的权威值。 |
transaction_type | string | TED 类型。transaction_type 枚举值 |
transaction_status | string | 当前 TED 状态(如 paid、settled)。 |
created_at | string | 记录创建时间(ISO 8601)。 |