Overview
Query card account payout records.
Payout Records
- Resquest
cURL -X POST /card-api/v1/payouts/list
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
-d '{
"cursor": "",
"batch_no": "102149",
"program_value": 5,
"limit": 10,
"to_created_at": "",
"from_created_at": "",
"currency": "",
"ascending": false
}'
| Parameter | Description |
|---|---|
| limit | Number of records to query |
| batch_no | Batch number |
| program_value | Program value |
| from_created_at | Start time |
| to_created_at | End time |
| currency | Currency |
| ascending | Sort order (true = ascending, false = descending) |
- Responses
{
"code": "200",
"msg": "Success",
"trace_id": "cdd579eb955b4970b71f89c7a4cf56b9",
"data": {
"data": [
{
"batch_no": "102149",
"program_value": 5,
"program_cn_name": "USD",
"program_en_name": "USD Multi Card-XA",
"moving_account_time": "2025-06-05T09:34:51+08:00",
"currency": "USD",
"amount": 0.1,
"issue_card_amount": 2998.9
}
],
"next_cursor": null,
"has_more": false
}
}
| Parameter | Description |
|---|---|
| batch_no | Batch number |
| program_value | Program value |
| program_cn_name | Program name in Chinese |
| program_en_name | Program name in English |
| moving_account_time | Time of account movement |
| currency | Currency |
| amount | Withdrawal amount |
| issue_card_amount | Card limit amount |