交易请求报文
JSON:
{
"request_type": "barcode_query_request",
"isspid": "39493002",
"pos_id": "8888888888",
"store_id": "8888888888",
"pos_seq": "2018121400000005",
"user_id": "user01",
"system_id": "8888",
"barcode_query_request": {
"pay_type": "502",
"org_pos_seq": "2018121400000001"
},
"sign": "79CB18BC49A4D60C457506EA4EF27C14"
}
XML:
<?xml version="1.0" encoding="GBK"?>
<business_trans>
<request_type>barcode_query_request</request_type>
<isspid>39493002</isspid>
<pos_id>1511300001</pos_id>
<store_id>1511300001</store_id>
<pos_seq>1511300000003</pos_seq>
<user_id>user01</user_id>
<system_id>8888</system_id>
<barcode_query_request>
<pay_type>502</pay_type>
<org_pos_seq>1511300000001</org_pos_seq>
</barcode_query_request>
</business_trans>
交易请求报文说明
节点名称 | 中文名称 | 类型 | 说明 | 是否必填 |
---|---|---|---|---|
sign | 报文签名 | String(32) | 请求报文格式为JSON时必填 计算签名方式请看2.1章节 | 可选 |
request_type | 请求类型 | String(32) | 标识请求报文的类型,固定为barcode_query_request | 必填 |
isspid | 商户号 | String(8) | 接入SP的ID号,由翼码平台分配给ipos接入受理商户的机构号(原值返回) | 必填 |
pos_id | 终端号 | String(20) | 终端号 | 必填 |
store_id | 门店号 | String(20) | 门店号 | 必填 |
pos_seq | 终端流水号 | String(32) | 若传入要求同一个商户下不重复,且大于12位 可以选填 | 可选 |
user_id | 操作员标识 | String(20) | 操作员号 | 可空 |
system_id | 系统平台号 | String(4) | 由翼码提供 | 必填 |
barcode_query_request ->pay_type | 支付类型 | String(3) | 502:支付宝支付 503:微信支付 512:银联二维码 515:小程序支付 | 可空 |
barcode_query_request ->org_pos_seq | 需要查询的支付交易流水号 | String(32) | 需要查询的支付交易流水号,且大于12位 | 必填 |
barcode_query_request ->pos_sn | 设备sn号 | String | 设备sn号,设备上可查看 | 必填 |
交易返回报文
JSON:
{
"response_type": "barcode_query_response",
"isspid": "39493002",
"pos_id": "8888888888",
"pos_seq": "2018121400000005",
"trans_time" "20201130111111",
"pay_type": "502",
"extend": "<![CDATA[]]>",
"sys_seq": "0f041092d0ccc6ae",
"result": {
"id": "0000",
"comment": "交易成功"
},
"pay_response": {
"order_status": "0",
"channel_id": "alipay",
"trade_no": "xxxxxxxxxxxx",
"total_fee": "10",
"receipt_amount": "10",
"trans_time": "20201130111111"
},
"sign": "79D928004531AE15DFA6AD7E9A6A2447"
}
XML:
<?xml version="1.0" encoding="GBK"?>
<business_trans>
<response_type>barcode_query_response</response_type>
<isspid>39493002</isspid>
<pos_id>123456789</pos_id>
<pos_seq>000000000001</pos_seq>
<sys_seq>000000000244</sys_seq>
<trans_time>20201130111111</trans_time>
<pay_type>502</pay_type>
<extend><![CDATA[扩展字段(json格式)]]></extend>
<result>
<id>0000</id>
<comment>成功</comment>
</result>
<pay_response>
<order_status>0</order_status>
<channel_id>alipay</channel_id>
<trade_no>xxxxxxxxxxx</trade_no>
<total_fee>10</total_fee>
<receipt_amount>10</receipt_amount>
<trans_time>20201130111111</trans_time>
</pay_response>
</business_trans>
交易返回报文说明
标准接口会因业务升级需要而新增节点,请在解析返回报文时避免新增未知节点产生的程序出错!
节点名称 | 中文名称 | 类型 | 说明 | 是否必填 |
---|---|---|---|---|
sign | 报文签名 | String(32) | 返回报文格式为JSON时必填 计算签名方式请看2.1章节 | 可选 |
response_type | 返回类型 | String(32) | 标识返回报文的类型,固定为barcode_query_response | 必填 |
isspid | 商户号 | String(8) | 接入SP的ID号,为翼码平台的提供的业务商机构号 | 必填 |
pos_id | 终端号 | String(20) | 终端号 | 必填 |
pos_seq | 终端流水号 | String(32) | 终端交易流水号,和请求报文中的交易流水号相同 | 可选 |
sys_seq | 随机串号 | String(16) | 随机生成串号,仅用于日志跟踪用,不保存 | 必填 |
trans_time | 交易时间 | String(14) | 交易时间,格式:yyyyMMddHHmmss | 必填 |
pay_type | 支付类型 | String(3) | 502:支付宝支付 503:微信支付 512:银联二维码 515:小程序支付 | 必填 |
extend | 扩展信息 | String | 扩展信息字段内容为json格式 预留字段后续业务扩展使用 | 可空 |
result ->id | 响应码 | String(4) | 翼码平台返回的处理结果 0000-成功 9998-等待付款,需要调用支付查询交易确认结果 其它失败,错误信息说明见“响应码解释”字段 | 必填 |
result ->comment | 响应码解释 | String(64) | 响应码对应中文注解,用于显示提示 | 必填 |
交易返回数据 | 仅result->id返回为0000时返回一下数据 | 可空 | ||
pay_response ->order_status | 订单状态 | Number(1) | 0.正常 1.已退货 2.已撤销 3.未知/处理中 | 必填 |
pay_response ->channel_id | 实际支付渠道 | String(10) | 支付宝支付:alipay, 微信支付:wxpay,收单支付: acquire/boc … ,会员卡:card | 必填 |
pay_response ->trade_no | 原系统交易流水 | String | 支付宝、微信等渠道返回的交易流水号 | 必填 |
pay_response ->total_fee | 应付金额 | Number(9) | 订单应付金额,单位:分,不支持小数点 | 必填 |
pay_response ->receipt_amount | 实付金额 | Number(9) | 用户实付金额,单位:分,不支持小数点 | 必填 |
pay_response ->buyer_logon_id | 买家支付宝用户号 | String | 买家支付宝用户号,仅在channel_id 为alipay时生效 | 可空 |
pay_response ->trans_time | 系统交易时间 | String(14) | 支付宝、微信等系统交易时间,格式:yyyyMMddHHmmss | 必填 |
标准接口会因业务升级需要而新增节点,请在解析返回报文时避免新增未知节点产生的程序出错!