- 安全发
- 支付相关接口
- 分账业务接口
- 快捷支付接口
- 云闪付接口
- 外卡支付开发接口
- 网银支付
- 数字人民币
- 资金归集
- 互联网直付通
- 汇分账web3钱包
协议支付解绑
POST
/pay/unBindCard
支付相关接口
请求参数
Body 参数application/json
协议支付绑卡提交
version
string
版本号
请填最新版本 2.0 ,会兼容小于 2.0 或
为空的版本
customerCode
string
商户编号
protocol
string
协议号
值 protocol
memberId
string
分账模式
分账”的,该值一律传商户自编的编
号。
nonceStr
string
随机字符串
示例
{
"version": "string",
"customerCode": "string",
"protocol": "string",
"memberId": "string",
"nonceStr": "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 '/pay/unBindCard' \
--header 'Content-Type: application/json' \
--data-raw '{
"version": "string",
"customerCode": "string",
"protocol": "string",
"memberId": "string",
"nonceStr": "string"
}'
返回响应
🟢200成功
*/*
Body
响应信息主体
code
integer <int32>
可选
msg
string
可选
data
object (ProtocolPayBindCardResponse)
协议支付绑卡返回
returnCode
string
必需
returnMsg
string
信息
nonceStr
string
随机字符串
customerCode
string
商户编号
memberId
string
分账子商户编号
示例
{
"code": 0,
"msg": "string",
"data": {
"returnCode": "string",
"returnMsg": "string",
"nonceStr": "string",
"customerCode": "string",
"memberId": "string"
}
}
修改于 2024-10-09 07:30:28