- API接口
- 商户后台
- 运营后台
- 商户管理
- 交易中心
- 账单中心
- 资金账户
- 下啦接口
- 缓存
- 定时
- 其他
- 平台提现管理-详情GET
- 平台资金账户(手续费账户)分页GET
平台提现管理-提现确认
POST
/admin/merchant/admin/plat/cash/check
请求参数
Body 参数application/json
cashNo
string
提现订单号
rate
string
实时汇率
fee
string
总手续费
actualAmt
string
实际到账金额
applyStatus
string
状态: SUCCESS成功 FAIL失败
remark
string
备注
cashFeeList
array [object {2}]
手续列表
feeAmt
string
分润金额
feeName
string
分润名称
示例
{
"cashNo": "string",
"rate": "string",
"fee": "string",
"actualAmt": "string",
"applyStatus": "string",
"remark": "string",
"cashFeeList": [
{
"feeAmt": "string",
"feeName": "string"
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/admin/merchant/admin/plat/cash/check' \
--header 'Content-Type: application/json' \
--data-raw '{
"cashNo": "string",
"rate": "string",
"fee": "string",
"actualAmt": "string",
"applyStatus": "string",
"remark": "string",
"cashFeeList": [
{
"feeAmt": "string",
"feeName": "string"
}
]
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
null
必需
示例
{
"code": 0,
"msg": null
}
修改于 2023-02-13 08:30:55