绑定申请
POST/v1/txn/apply-commission-transfer-relation服务商针对电商平台商户请求,进行定向付款关系绑定。
请求参数
Body 参数application/json
oid_partner
string
商户号
ACCP系统分配科技平台的唯一编号
txn_seqno
string
商户请求单号
请求绑定申请流水号,保证在用户系统唯一性
timestamp
string
时间戳
交易服务器时间戳格式:yyyyMMddHHmmss有效期30分钟(包含服务器之间的时间差)
notify_url
string
通知URL
绑定结果通知地址
bindMerchantInfo
object
绑定电商商户信息
oid_partner
string
商户号
电商平台在ACCP的商户号
payer_user_id
string
付款用户号
电商平台在ACCP的付款用户外部用户号
company_id
string
客户企业Id
客户企业ID(客户在服务商系统中的唯一标识)
bindPlatformInfo
object
绑定服务商信息
fee_user_id
string
服务商收费用户号
服务商商户体系下用户号(线下开的)
comm_user_id
string
服务商发佣用户号
服务商商户体系下用户号(线下开的)
hr_company_id
string
服务商id
科技平台给服务商id
示例
{
"oid_partner": "string",
"txn_seqno": "string",
"timestamp": "string",
"notify_url": "string",
"bindMerchantInfo": {
"oid_partner": "string",
"payer_user_id": "string",
"company_id": "string"
},
"bindPlatformInfo": {
"fee_user_id": "string",
"comm_user_id": "string",
"hr_company_id": "string"
}
}示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
ret_code
string
交易结果代码
查询交易返回码
ret_msg
string
交易结果描述
查询交易返回描述
oid_partner
string
商户号
ACCP系统分配给平台商户的唯一编号
relation_id
string
绑定编号
绑定编号
status
string
绑定状态
状态,
待确认INIT,
已确认SUCCESS,
已拒绝REFUSE
示例
{
"ret_code": "string",
"ret_msg": "string",
"oid_partner": "string",
"relation_id": "string",
"status": "string"
}