请求方式:GET
请求地址:/card/api/v1/trade/queryCardTransactions
| 参数名 | 类型 | 说明 |
| partner_order_id | string | 商户持卡人ID |
| card_id | string | 卡ID |
| transaction_type | string | 交易类型,详见下方“交易类型“ |
| begin_time | LocalDateTime | 查询开始时间,如:2025-10-01 10:00:00 |
| end_time | LocalDateTime | 查询结束时间,如:2025-10-20 10:00:00 |
| page_size | int | 每页大小 |
| page_no | int | 当前页 |
| 参数名 | 类型 | 说明 |
| page_size | int | 当前页大小 |
| page_no | int | 当前页 |
| total | int | 总数 |
| pages | int | 总页数 |
| list | List<CardTransactionDetail> | 记录列表 |
| 参数名 | 类型 | 说明 |
| partner_order_id | string | 商户持卡人ID |
| card_id | string | 卡ID |
| primary_card_id | string | 主卡ID |
| transaction_id | string | 交易流水号 |
| transaction_time | long | 交易时间 |
| create_time | long | 创建时间 |
| transaction_currency | string | 交易币种 |
| transaction_amount | decimal | 交易金额 |
| billing_currency | string | 账单币种 |
| billing_amount | decimal | 账单金额 |
| auth_code | string | 授权码 |
| transaction_type | string | 交易类型,详见下方“交易类型“ |
| transaction_status | string | 交易状态 Success:成功 Failure:失败 |
| result_code | string | 交易结果code |
| fail_reason | string | 失败原因 |
| merchant_name | string | 商户名称 |
| merchant_country | string | 商户国家 |
| merchant_city | string | 商户城市 |
| reference_id | string | 关联ID |
| mcc | string | mcc |
| cross_board_type | int | 是否跨境 0:否 1:是 |
| fund_account_type | string | 资金账户类型 Wallet:钱包 Card:卡 |
| fund_direct | int | 资金方向 1:增加 -1:减少 |
| merchant_fee | MerchantFee | 费用信息 |
| 参数名 | 类型 | 说明 |
| total_fee_amount | decimal | 总费用 |
| fee_currency | string | 费用币种 |
| fee_detail | List<MerchantFeeDetail> | 费用明细 |
| 参数名 | 类型 | 说明 |
| fee_amount | decimal | 费用 |
| fee_type | string | 费用类型 |
| 类型 | 说明 |
| AuthorizationQuery | 授权查询 |
| Authorization | 授权交易 |
| Reversal | 授权冲正 |
| Clearing | 授权清算 |
| Refund | 清算后退款 |
| CrossBorder | 跨境费 |