跳到主要内容

概述

查询发卡账户余额的变动记录 。

余额变动记录

cURL -X POST /card-api/v1/balance/change/records
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
-d '{
"cursor": "",
"bill_currency_list": [
"USD"
],
"fund_type_list": [
"20"
],
"from_changed_at": "2025-06-06T10:45:40+08:00",
"program_value_list": [
"6"
],
"limit": 10,
"to_changed_at": "2025-06-29T10:45:40+08:00",
"ascending": false,
"moving_account_currency_list": [
"USD"
]
}'
字段描述
limit查询条数
from_changed_at动账开始时间
to_changed_at动账结束时间
bill_currency_list账单币种ARRAY
fund_type_list资金类型
  • 20 : 创建发卡额度
  • 21 : 月账单
  • 22 : 清算月账单
  • 23 : 释放额度
  • 24 : 换汇卖出
  • 25 : 换汇买入
  • 28 : 发卡提额
program_value_list账户卡类型列表ARRAY
moving_account_currency_list动账币种ARRAY
{
"code": "200",
"msg": "操作成功",
"trace_id": "686bc53dbdbc4d05ab616632cd63c0ef",
"data": {
"data": [
{
"program_value": 6,
"moving_account_Time": "2025-06-10T15:33:27+08:00",
"moving_account_type": 1,
"fund_type": 20,
"batch_no": "102902",
"bill_amount": 100,
"bill_currency": "USD",
"moving_account_amount": 100,
"moving_account_currency": "USD",
"card_limit_currency": "USD",
"card_limit_amount": 12555.4,
"card_exchange_rate": 1.0000000000,
"card_exchange_time": null
},
{
"program_value": 6,
"moving_account_Time": "2025-06-10T14:50:49+08:00",
"moving_account_type": 1,
"fund_type": 20,
"batch_no": "102901",
"bill_amount": 100,
"bill_currency": "USD",
"moving_account_amount": 100,
"moving_account_currency": "USD",
"card_limit_currency": "USD",
"card_limit_amount": 12455.4,
"card_exchange_rate": 1.0000000000,
"card_exchange_time": null
},
"next_cursor": "3620",
"has_more": true
}
}
字段描述
has_more是否有下一页
program_value_listProgram value
moving_account_Time动账时间
moving_account_type动账类型
  • 1 : 转入
  • 2 : 转出
fund_type资金类型
batch_no批次号
bill_amount账单金额
bill_currency账单币种
moving_account_amount动账金额
moving_account_currency动账币种
card_limit_currency卡额度币种
card_limit_amount卡额度金额
card_exchange_rate卡转换汇率
card_exchange_time卡转换时间