2.1.24多张卡账单查询-v2
接口地址:/v2/openapi/card/transactions
请求方式:POST
请求数据类型:application/json
响应数据类型:application/json
接口描述:
查询指定商户下所有的卡交易记录
此接口是2.1.19接口的升级版本
接口变动:返回参数中增加卡
mc_trade_no
字段,posting_date
和transaction_date
格式改为精确到秒的时间戳
请求示例:
{
"end_time": "1676359867",
"page": 1,
"size": 200,
"start_time": "1676349867"
}
请求参数:
参数名称 | 数据类型 | 必须 | 参数说明 |
---|---|---|---|
end_time | string | true | 结束时间:UNIX时间戳,单位秒,与开始时间间隔不能超过60天 |
page | integer | true | 页数 |
size | integer | true | 每页条数,最少10条最多200条 |
start_time | string | true | 开始时间:UNIX时间戳,单位秒 |
响应参数:
参数名称 | 类型 | 参数说明 |
---|---|---|
code | string | 错误码 |
data | object | 响应数据 |
page | integer | 当前页 |
records | array | 数据列表 |
card_id | string | 卡ID |
credit | string | 存入金额 |
debit | string | 消费金额 |
description | string | 交易描述 |
fee | string | 手续费,只有部分卡有值 |
posting_date | string | 交易提交日期;精确到秒的时间戳 |
status | integer | 交易状态 |
transaction_date | string | 交易日期;精确到秒的时间戳 |
tx_amount | string | 实际交易货币的交易金额 |
tx_currency | string | 实际交易货币 |
tx_id | string | 交易ID |
type | integer | 交易类型 |
mc_trade_no | string | 交易流水;只有您主动发起的卡片交易才有此值,例如充值 |
size | integer | 每页条数 |
total | integer | 总数 |
msg | string | 错误信息 |
响应示例:
{
"code": "00000",
"data": {
"page": 1,
"records": [
{
"card_id": "00003454323400000028888",
"credit": "2.50",
"debit": "2.50",
"description": "MONTHLY FEE",
"fee": "0",
"posting_date": "1595497477",
"status": 1,
"transaction_date": "1595497477",
"mc_trade_no": "48d2741747a4493223feb22",
"tx_amount": "2.5",
"tx_currency": "usd",
"tx_id": 54675678678,
"type": 1
}
],
"size": 10,
"total": 100
},
"msg": "ok"
}