提现
POST
{{act_transaction}}/transaction/withdraw
请求参数
Body 参数application/json
merchantsNo
integer
商户号
transactionNo
string
交易码
originOrderNo
string
业务订单号
bizLine
string
业务线
outSubAccountNo
string
出账子户编号
bindCardId
string
绑卡ID
transactionMoney
integer
交易金额
transactionCallbackUrl
string
交易回调地址
originTraceId
string | null
外部系统链路id
originSystemId
string | null
外部系统id
originTransactionNo
string | null
外部系统交易流水号
transactionSource
string | null
交易来源
transactionChannel
string | null
交易渠道
transactionMode
string | null
交易模式
transactionRemark
string | null
交易备注
transactionPostscript
string | null
交易附言
verificationCode
string | null
验证码
verificationCodeSerialNo
string | null
验证码流水
arrivalMode
string | null
到账方式
handlingFee
integer | null
手续费
bankViewType
string | null
银行页面类型
accountPasswordHide
string | null
转出账户加密密码
randomKey
string | null
随机密码因子
示例
{
"merchantsNo": 1000000023,
"timestamp": 1649153392676,
"transactionNo": "20012",
"originOrderNo": "2022040518195281982",
"bizLine": "SLDZ",
"outSubAccountNo": "NO2022041015170472573",
"bindCardId": "6379442158861772421",
"transactionMoney": 10,
"transactionCallbackUrl": "http://192.168.0.8:9018/call-back-mock"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{act_transaction}}/transaction/withdraw' \
--header 'Content-Type: application/json' \
--data-raw '{
"merchantsNo": 1000000023,
"timestamp": 1649153392676,
"transactionNo": "20012",
"originOrderNo": "2022040518195281982",
"bizLine": "SLDZ",
"outSubAccountNo": "NO2022041015170472573",
"bindCardId": "6379442158861772421",
"transactionMoney": 10,
"transactionCallbackUrl": "http://192.168.0.8:9018/call-back-mock"
}'
返回响应
🟢200成功
application/json
Body
status
object (状态返回参数)
必需
statusCode
integer
状态码
systemCode
integer
系统编号
statusReason
string
错误描述
result
必需
One of
requestFlowNo
string
请求流水号
handlerStatus
string
处理状态
attachment
object (扩展信息返回参数)
必需
traceId
string
链路id
timestamp
integer
响应时间
示例
{
"status": {
"statusCode": 0,
"systemCode": -1,
"statusReason": "服务器处理成功"
},
"result": {
"requestFlowNo": "6424471351907361913",
"handlerStatus": "PROCESS"
},
"attachment": {
"traceId": "",
"timestamp": 1652101713663
}
}
🟢200全局响应对象
修改于 2023-12-02 07:07:05