交易请求报文
JSON:
{
"request_type": "merchant_withdrawquery_request",
"isspid": "00058301",
"pos_seq": "2022112500001",
"system_id": "8888",
"merchant_withdrawquery_request": {
"withdraw_seq": "2022112500003"
},
"sign": "712036C2324D76F2934C44C95A80CEBA"
}
XML:
<?xml version="1.0" encoding="GBK"?>
<business_trans>
<request_type>merchant_withdrawquery_request</request_type>
<isspid>00058301</isspid>
<pos_seq>2022112500001</pos_seq>
<system_id>8888</system_id>
<merchant_withdrawquery_request>
<withdraw_seq>2022112500003</withdraw_seq>
</merchant_withdrawquery_request>
</business_trans>
交易请求报文说明
节点名称 | 中文名称 | 类型 | 说明 | 是否必填 |
---|---|---|---|---|
sign | 报文签名 | String(32) | 请求报文格式为JSON时必填 计算签名方式请看2.1章节 | 可选 |
request_type | 请求类型 | String(32) | 固定值:merchant_withdrawquery_request | 必填 |
system_id | 系统平台号 | String(4) | 由翼码提供 | 必填 |
isspid | 商户号 | String(8) | 翼码商户号,由翼码提供 | 必填 |
pos_seq | 终端流水号 | String(32) | 同一个商户必须唯一,且大于12位 | 必填 |
merchant_withdrawquery_request ->withdraw_seq | 取现流水号 | String | 取现流水号 | 必填 |
交易返回报文
JSON:
{
"response_type": "merchant_withdrawquery_response",
"isspid": "00058999",
"pos_id": "test083001",
"pos_seq": "2022112500001",
"withdraw_seq": "2022112500002",
"trans_status": "s",
"acct_status": "s",
"trans_desc": "失败",
"remark": "取现",
"amount": 10,
"fee": 0,
"trans_date": "20020101",
"result": {
"id": "0000",
"comment": "操作成功"
},
"sign": "CAC0BA2826E985E7FD58C955975246B1"
}
XML:
<?xml version="1.0" encoding="GBK"?>
<business_trans>
<response_type>merchant_withdrawquery_response</response_type>
<isspid>00058999</isspid>
<pos_id>test083001</pos_id>
<pos_seq>2022112500001</pos_seq>
<withdraw_seq>2022112500002</withdraw_seq>
<trans_status>s</trans_status>
<acct_status>s</acct_status>
<trans_desc>失败</trans_desc>
<remark>取现</remark>
<amount>10</amount>
<fee>0</fee>
<trans_date>20020101</trans_date>
<result>
<id>0000</id>
<comment>操作成功</comment>
</result>
<sign>CAC0BA2826E985E7FD58C955975246B1</sign>
</business_trans>
交易返回报文说明
标准接口会因业务升级需要而新增节点,请在解析返回报文时避免新增未知节点产生的程序出错!
节点名称 | 中文名称 | 类型 | 说明 | 是否必填 |
---|---|---|---|---|
sign | 报文签名 | String(32) | 返回报文格式为JSON时必填 计算签名方式请看2.1章节 | 可选 |
response_type | 返回类型 | String(32) | 固定值:merchant_withdrawquery_response | 必填 |
isspid | 商户号 | String(8) | 翼码商户号,由翼码提供 | 必填 |
pos_seq | 终端流水号 | String(32) | 终端交易流水号和请求报文的交易流水相同 | 可选 |
withdraw_seq | 取现流水号 | String | 取现流水号 | 可选 |
amount | 取现金额(分) | Number | 取现金额(分) | 可选 |
fee | 取现手续费(分) | Number | 取现手续费(分) | 可选 |
trans_date | 取现日期 | String | 取现日期,格式 yyyyMMdd | 可选 |
trans_status | 交易状态 | String | s:成功, p:处理中,f:失败 | 可选 |
acct_status | 账务状态 | String | s:成功, p:处理中, f:失败,b:回账成功 | 可选 |
trans_desc | 失败原因 | String | 失败原因 | 可选 |
remark | 备注 | String | 备注(同请求原样返回) | 可选 |
result ->id | 响应码 | String(4) | 翼码平台返回的处理结果,0000-成功,其它失败,错误信息说明见“响应码解释”字段 | 必填 |
result ->comment | 响应码解释 | String(64) | 响应码对应中文注解,用于显示提示 | 必填 |
标准接口会因业务升级需要而新增节点,请在解析返回报文时避免新增未知节点产生的程序出错!