交易请求报文
JSON:
{
"request_type": "merchant_create_request",
"isspid": "00058301",
"pos_seq": "2022112500001",
"system_id": "8888",
"merchant_create_request": {
"type": "1",
"merchant_short_name": "添加商户",
"merchant_name": "添加商户",
"email": "12062@gmail.com",
"phone": "18812060000",
"send_sms_tag": "0"
},
"sign": "712036C2324D76F2934C44C95A80CEBA"
}
XML:
<?xml version="1.0" encoding="GBK"?>
<business_trans>
<request_type>merchant_create_request</request_type>
<isspid>00058301</isspid>
<pos_seq>2022112500001</pos_seq>
<system_id>8888</system_id>
<merchant_create_request>
<type>1</type>
<merchant_short_name>添加商户</merchant_short_name>
<merchant_name>添加商户</merchant_name>
<email>12062@gmail.com</email>
<phone>18812060000</phone>
<send_sms_tag>0</send_sms_tag>
</merchant_create_request>
</business_trans>
交易请求报文说明
节点名称 | 中文名称 | 类型 | 说明 | 是否必填 |
---|---|---|---|---|
sign | 报文签名 | String(32) | 请求报文格式为JSON时必填 计算签名方式请看2.1章节 | 可选 |
request_type | 请求类型 | String(32) | 固定值:merchant_create_request | 必填 |
system_id | 系统平台号 | String(4) | 由翼码提供 | 必填 |
isspid | 商户号 | String(8) | 翼码商户号,由翼码提供 | 必填 |
pos_seq | 请求流水号 | String(32) | 同一个翼码商户号下唯一,不可重复使用,且大于12位 | 必填 |
merchant_create_request ->type | 用户类型 | String(2) | 1:企业商户, 2:个体商户, 3:小微商户(无营业执照); 企业/个体商户需调用4.45.企业分账商户开户, 小微商户需调用4.43.个人分账商户开户 | 必填 |
merchant_create_request ->merchant_short_name | 用户简称 | String(20) | 用户简称仅支持输入汉字、英文字符、数字 | 必填 |
merchant_create_request ->merchant_name | 营业执照名称/个人姓名 | String(50) | 企业商户与个体商户填写营业执照名称,小微商户填写个人姓名; 名称不能超过50个字符长度 | 必填 |
merchant_create_request ->phone | 用户手机号 | String(11) | 用户手机号 | 必填 |
merchant_create_request | 用户邮箱 | String(64) | 用户邮箱 | 可选 |
merchant_create_request ->send_sms_tag | 短信通知 | String(1) | 是否发短信通知 1:发送,0:不发送,默认为0 | 可选 |
交易返回报文
JSON:
{
"response_type": "merchant_create_response",
"isspid": "00058301",
"pos_seq": "2022112500001",
"trans_time": "20221207160923",
"merchant_id": 1000107,
"result": {
"id": "0000",
"comment": "操作成功"
},
"sign": "20896396D9AAE3798E3A9131E84297E4"
}
XML:
<?xml version="1.0" encoding="GBK"?>
<business_trans>
<response_type>merchant_create_response</response_type>
<isspid>00058301</isspid>
<pos_seq>2022112500001</pos_seq>
<trans_time>20221207160923</trans_time>
<merchant_id>100010777</merchant_id>
<result>
<id>0000</id>
<comment>操作成功</comment>
</result>
</business_trans>
交易返回报文说明
标准接口会因业务升级需要而新增节点,请在解析返回报文时避免新增未知节点产生的程序出错!
节点名称 | 中文名称 | 类型 | 说明 | 是否必填 |
---|---|---|---|---|
sign | 报文签名 | String(32) | 返回报文格式为JSON时必填 计算签名方式请看2.1章节 | 可选 |
response_type | 返回类型 | String(32) | 固定值:merchant_create_response | 必填 |
isspid | 商户号 | String(8) | 翼码商户号,由翼码提供 | 必填 |
pos_id | 终端号 | String(20) | 商户自定义终端号 | 必填 |
pos_seq | 请求流水号 | String(32) | 请求流水号 | 可选 |
trans_time | 交易时间 | String(14) | 交易时间,格式:yyyyMMddHHmmss | 必填 |
merchant_id | 用户id | Number | 分账商户id | 必填 |
result ->id | 响应码 | String(4) | 翼码平台返回的处理结果,0000-成功,其它失败,错误信息说明见“响应码解释”字段 | 必填 |
result ->comment | 响应码解释 | String(64) | 响应码对应中文注解,用于显示提示 | 必填 |
标准接口会因业务升级需要而新增节点,请在解析返回报文时避免新增未知节点产生的程序出错!