# 提现记录分页列表查询

# 调用方式: GET

# 接口地址:

https://api.freelog.com/v3/transactions/withdrawCash/records?accountId={accountId}
1

# url传入参数说明:

参数 必选 类型及范围 说明
skip 可选 int 跳过的数量.默认为0.
limit 可选 int 本次请求获取的数据条数.一般不允许超过100
accountId 必选 string 账户ID

# 返回说明:

返回值字段 字段类型 字段说明
id string 提现记录ID
accountId string 提现账户ID
withdrawCashCardId string 提现卡ID
withdrawCashType string 提现方式; 例如工商银行
cardNo string 提现银行卡号
transactionAmount number 提现金额
feeAmount number 提现手续费
beforeBalance number 提现前账户余额
afterBalance number 提现后账户余额
transactionInitiationDate date 提现发起日期
transactionCompleteDate date 提现交易完成日期
status int 提现状态 1:处理中 2:成功 3:失败
remark string 备注

# 返回示例

{
  "ret": 0,
  "errCode": 0,
  "data": {
    "skip": 0,
    "limit": 10,
    "totalItem": 1,
    "dataList": [
      {
        "id": "788962989649461248",
        "accountId": "786414687809986560",
        "cardNo": "6217234000005243888",
        "transactionAmount": 0.01,
        "beforeBalance": 0,
        "afterBalance": -0.01,
        "transactionInitiationDate": "2025-12-05T08:49:50.622Z",
        "transactionCompleteDate": null,
        "status": 1,
        "remark": "test"
      }
    ]
  },
  "msg": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24