- 福鑫OpenApi v2版本介绍
- 接入说明
- 接口文档
出入金记录查询
POST
/v1/fx/openapi/fund/record
请求参数
Header 参数
access_token
string
必需
Body 参数application/json
type
string
类型
currency
string
币种
status
string
状态
case_id
string
业务ID
reference_id
string
流水号
start_time
integer
查询开始时间
end_time
integer
查询结束时间
page
integer
页码
page_size
integer
每页数量
示例
{
"type": "WITHDRAW",
"case_id": "",
"reference_id": "",
"currency": "",
"status": "",
"start_time": 1688140800000,
"page": 1,
"page_size": 20
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox-gateway.pingpongx.com/v1/fx/openapi/fund/record' \
--header 'access_token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "WITHDRAW",
"case_id": "",
"reference_id": "",
"currency": "",
"status": "",
"start_time": 1688140800000,
"page": 1,
"page_size": 20
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
data
object
必需
total
integer
必需
records
array [object {7}]
必需
message
null
必需
示例
{
"code": 0,
"data": {
"total": 9,
"records": [
{
"amount": 1,
"case_id": "230710W00006",
"currency": "USD",
"time": 1688957953000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
},
{
"amount": 0.1,
"case_id": "230710W00005",
"currency": "USD",
"time": 1688957515000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
},
{
"amount": 0.1,
"case_id": "230710W00004",
"currency": "USD",
"time": 1688957477000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
},
{
"amount": 0.1,
"case_id": "230710W00003",
"currency": "USD",
"time": 1688957424000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
},
{
"amount": 0.1,
"case_id": "230710W00002",
"currency": "USD",
"time": 1688957326000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
},
{
"amount": 0.1,
"case_id": "230710W00001",
"currency": "USD",
"time": 1688957202000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
},
{
"amount": 0.1,
"case_id": "230710W00000",
"currency": "USD",
"time": 1688957101000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
},
{
"amount": 0.1,
"case_id": "230707W00001",
"currency": "USD",
"time": 1688709390000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
},
{
"amount": 0.1,
"case_id": "230707W00000",
"currency": "USD",
"time": 1688709030000,
"type": "WITHDRAW",
"card_id": "card1585185234946809858",
"status": "PROCESS"
}
]
},
"message": null
}
修改于 2024-05-28 08:14:08