# 用户主动提现

# 调用方式: POST

# 接口地址:

https://api.freelog.com/v3/transactions/withdrawCash
1

# url传入参数说明:

参数 必选 类型及范围 说明
accountId 必选 string 提现账户ID
transactionAmount 必选 number 提现金额; 最多保留两位小数

# body示例

{
    "accountId": "790778769057517568",
    "transactionAmount": 0.01
}
1
2
3
4

# 返回说明:

返回值字段 字段类型 字段说明
id string 提现记录ID
accountId string 提现账户ID
withdrawCashCardId string 提现卡ID
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": {
        "id": "791056974850334720",
        "accountId": "790778769057517568",
        "withdrawCashCardId": "790779294645751808",
        "cardNo": "*************3888",
        "transactionAmount": 0.01,
        "beforeBalance": 1,
        "afterBalance": 0.99,
        "feeAmount": 0,
        "transactionInitiationDate": "2025-12-11T03:30:35.599Z",
        "transactionCompleteDate": null,
        "status": 1,
        "remark": "备注"
    },
    "msg": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19