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": 2,
"account_id": "1016X10034796020144",
"limit": 10,
"to_created_at": "",
"from_created_at": "",
"currency": "",
"ascending": false
}'
| Parameter | Type | Length | Required | Description | Example |
|---|---|---|---|---|---|
limit | string | 1-10 | Required | Number of records to query | 10 |
batch_no | string | 1-10 | Required | Batch number | 102149 |
program_value | int | 1-10 | Required | Account card type | 2 |
account_id | string | 0-20 | Optional | The unique identifier of the merchant account. Funds will be credited to the specified account_id.
| 1016X10034796020144 |
from_created_at | string | 0-20 | Optional | Start time | |
to_created_at | string | 0-20 | Optional | End time | |
currency | string | 3 | Required | Currency | USD |
ascending | string | 1-10 | Required | Sort order
|
- Response
{
"code": "200",
"msg": "Success",
"trace_id": "cdd579eb955b4970b71f89c7a4cf56b9",
"data": {
"data": [
{
"batch_no": "102149",
"program_value": 2,
"account_id": "1016X10034796020144",
"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 |