交易请求报文
<?xml version="1.0" encoding="GBK"?>
<business_trans>
<request_type>barcode_auth_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_auth_query_request>
<pay_type>502</pay_type>
<org_pos_seq>1511300000001</org_pos_seq>
</barcode_auth_query_request>
</business_trans>
交易请求报文说明
节点名称 | 中文名称 | 类型 | 说明 | 是否必填 |
---|---|---|---|---|
request_type | 请求类型 | String(32) | 标识请求报文的类型,固定为barcode_auth_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_auth_query_request->pay_type | 支付类型 | String(3) | 502:支付宝支付现已支持支付宝自动识别类型 | 可空 |
barcode_auth_query_request->org_pos_seq | 需要查询的预授权操作流水号 | String(32) | 需要查询的预授权操作流水号,且大于12位 | 必填 |
交易返回报文
<?xml version="1.0" encoding="GBK"?>
<business_trans>
<response_type>barcode_auth_query_response</response_type>
<isspid>39493002</isspid>
<pos_id>123456789</pos_id>
<pos_seq>000000000001</pos_seq>
<sys_seq>000000000244</sys_seq>
<trans_time>20090405010104</trans_time>
<pay_type>502</pay_type>
<alipay_res_info>
<auth_no>2018020610002001700285758761</auth_no>
<out_trade_no>0001034843100000088157</out_trade_no>
<buy_user_id>2088102811111111</buy_user_id>
<buy_logon_id>502***@qq.com</buy_logon_id>
<total_fee>5</total_fee>
<total_freeze_amt>5</total_freeze_amt>
<rest_amt>0</rest_amt>
<total_pay_amt>0</total_pay_amt>
<gmt_trans>2018-02-06 13:56:13</gmt_trans>
<detail_error_code></detail_error_code>
<detail_error_desc></detail_error_desc>
</alipay_res_info>
<result>
<id>0000</id>
<comment>成功</comment>
</result>
</business_trans>
交易返回报文说明
标准接口会因业务升级需要而新增节点,请在解析返回报文时避免新增未知节点产生的程序出错!
节点名称 | 中文名称 | 类型 | 说明 | 是否必填 |
---|---|---|---|---|
response_type | 返回类型 | String(32) | 标识返回报文的类型,固定为barcode_auth_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:支付宝支付 | 必填 |
result->id | 响应码 | String(4) | 翼码平台返回的处理结果,0000-成功,其它失败,错误信息说明见“响应码解释”字段 | 必填 |
result->comment | 响应码解释 | String(64) | 响应码对应中文注解,用于显示提示 | 必填 |
支付宝的时候,返回以下数据 | ||||
alipay_res_info->auth_no | 支付宝授权号 | String(64) | 交易成功时候,必填 | 可空 |
alipay_res_info->out_trade_no | 商户订单号 | String(64) | 交易成功时候,必填 | 可空 |
alipay_res_info->buy_user_id | 买家支付宝用户号 | String(64) | 可空 | |
alipay_res_info->buy_logon_id | 买家支付宝帐号 | String(64) | 可空 | |
alipay_res_info->total_fee | 操作金额 | Number(16) | 单位为分 | 可空 |
alipay_res_info->total_freeze_amt | 总冻结金额 | Number(16) | 单位为分 | 可空 |
alipay_res_info->rest_amt | 剩余冻结金额 | Number(16) | 单位为分 | 可空 |
alipay_res_info->total_pay_amt | 转支付的金额 | Number(16) | 单位为分 | 可空 |
alipay_res_info->gmt_trans | 预授权时间 | String(64) | 可空 | |
alipay_res_info->detail_error_code | 支付详细错误码 | String(48) | 可空 | |
alipay_res_info->detail_error_desc | 支付详细错误码说明 | String(64) | 可空 |
标准接口会因业务升级需要而新增节点,请在解析返回报文时避免新增未知节点产生的程序出错!