跳到主要内容

USB模式接口列表

消息结构

字段格式

POS应用程序和CodePay寄存器以JSON格式通信

公共字段

本文件根据以下约定对每个字段的不同方面进行了定义。

  • M:所需参数
  • C:满足某些条件时所需的参数
  • O:可选参数
  • -:不存在 常见参数如下:
参数 类型 请求 响应 说明
topicstringMMMessage topic identifier. Please refer to the topic Example: ecrhub.pay.order
request_idstringMMTransaction Request ID, used to receive the corresponding response. The caller needs to remain unique.
timestampstringOOTimestamp Example: 1698302992263
versionstringOOThe API version. fixed value:1.0 Example: 1.0
app_idstringMMThe payment app id registered in Codepay Gateway, Please refer to the Payment gateway integration guide
biz_dataJSONObjectMMBusiness Data. each transaction type has own business data
response_codestring-MThe order payment status code returned by CodePay Register, 000 means the transaction was successful, other means the transaction failed.Please refer to Response code

response_msgString-CFailed transaction error message returned by CodePay Register

主题

每种交易类型都有一个消息主题:

Key Name
ecrhub.pay.orderSubmit transaction
ecrhub.pay.queryQuery transaction
ecrhub.pay.closeClose transaction

交易消息

1. 提交交易

消息主题

ecrhub.pay.order

参数 类型 请求 响应 说明
trans_typestringMMTransaction type. Please refer to Transaction type

Example: 1
merchant_order_nostringMMMerchant order number.This field represents the order number for the refund request when refunded, different from the order number of the original consumer transaction. No more than 32 alphanumeric characters. Example: 121775014073233368018
orig_merchant_order_nostringC-Original merchant order number. If the transaction type is Cancellation, Refund and Pre-Authorization Cancellation, Pre-Authorization Completion, it must be required. (trans_type == 2,3,5,6) Example: 121775014073233368018
orig_pay_channel_trans_nostringC-Original payment channel transaction number. Required. If the transaction type is Cancellation, Refund and Pre-Authorization Cancellation, Pre-Authorization Completion, it must be required. (trans_type == 2,3,5,6) Example: 100000009
price_currencystringOOPrice Currency, compliant with ISO-4217 standard, described with a three-character code Example:USD
order_amountstringMMOrder amount. This field represents the transaction ordered amount, For example, one USD stands for one dollar, not one cent. Example: 34.50
tip_amountstringOOTip amount. This field represents the transaction tip amount. For example, 1 USD stands for one dollar, not one cent. Example: 34.50
on_screen_tipbooleanO-Whether or not to enter tips on the CodePay Register page, default is false, when "trans_type=1, 3, 4", this parameter can be set

Example: true
cashback_amountstringOOCashback amount. Expressed in the quoted currency, for example, One USD stands for one dollar, not one cent Example: 10.00
pay_method_idstringOOPayment method id. Please Refer to Payment method

If the TransType is 3, this parameter will not required

Example:Visa
pay_scenarioStringOOPayment scene, please refer to Please Refer to PayScenario

Example: SWIPE_CARD
attachstringOOAdditional data. Allows merchants to submit additional data, which will be returned as is. Example: abc123
descriptionstringOODescription of order goods or services. A brief description of the goods or services purchased by the customer. Example: IPhone White X2
notify_urlstringOOCallback address for payment notification. Receive payment notifications from the PayCloud gateway to call back the server address, and only when the transaction goes through the PayCloud payment gateway will there be a callback. Example: http://www.abc.com/callback?id=12345
expiresstringOOOrder expires time, after the expires time is not allowed to be paid, unit: seconds Example: 180
confirm_on_terminalbooleanOODo you need terminal confirmation before proceeding with payment operations? The default is false. When set to true, you need to confirm the order first, otherwise you will directly enter the card reading interface
required_terminal_authenticationbooleanOOWhen refund or void a transaction, does the store manager role need to authorize this operation on the terminal? default value: false
on_screen_signaturebooleanOOThis parameter controls the display logic of electronic signatures:
  • true: Display the electronic signature page and print the signature information on the purchase order
  • false: The electronic signature page will not be displayed, but the signature area needs to be printed on the purchase order
But even if this parameter is set, CodePay Register still processes electronic signatures according to the following logic in the following situations:
  • Credit card network, APP does not display signature page, fixed on receipt to print signature column

  • Pin debit transactions do not require a signature, the APP does not display a signature page, and the receipt is not printed either
trans_nostring-MTransaction number of PayCloud. which uniquely identifies a transaction. Example: 5021000010210602000003
trans_statusstring-MTransaction status, please refer to Transaction status
pay_channel_trans_nostring-OPayment channel transaction serial number, If trans_status is '2', the returned data will include this parameters. such as Visa, Mastercard and other payment platforms. Example: 000000123
discount_bmopcstring-OIf trans_status is '2', the returned data will include this parameters. The merchant gives the customer a preferential amount through the payment channel, and this part of the payment channel will not be settled to the merchant. Example: 3.00
discount_bpcstring-OIf trans_status is '2', the returned data will include this parameters. Discount the amount of the payment channel to the customer, and this part of the funds will be settled into the merchant account. Example: 5.00
trans_end_timestring-OIf trans_status is '2', the returned data will include this parameters. Transaction completed time. time zone: Local time zone, the system time zone set by the payment terminal, format: YYYY-MM-DD HH: mm:ss. Example: 2021-06-03 12:48:51

请求报文 (JSON)

{
"app_id": "your app id",
"biz_data": {
"confirm_on_terminal": true,
"expires": 0,
"merchant_order_no": "12320231220110257",
"order_amount": "10",
"trans_type": "1"
},
"request_id": "111111",
"topic": "ecrhub.pay.order",
"timestamp": "1698302992263"
}

请求报文 (HEX)

55AA000001007E
7B226170705F6964223A22796F757220617070206964222C2262697A5F64617461223A7B22636F6E6669726D5F6F6E5F7465726D696E616C223A747275652C2265787069726573223A302C226D65726368616E745F6F726465725F6E6F223A223132333230323331323230313130323537222C226F726465725F616D6F756E74223A223130222C227472616E735F74797065223A2231227D2C22726571756573745F6964223A22313131313131222C22746F706963223A226563726875622E7061792E6F72646572222C2274696D657374616D70223A2231363938333032393932323633227D
7ECC33
提示

第二行是MessageData,这仅用于显示目的,实际的HEX不换行

响应报文 (HEX)

55AA0000020061
7B226170705F6964223A22796F757220617070206964222C2262697A5F64617461223A7B226D65726368616E745F6F726465725F6E6F223A223132333230323331323230313130323537222C226F726465725F616D6F756E74223A223130222C227472616E735F737461747573223A2232222C2270726963655F63757272656E6379223A22555344222C227472616E735F6E6F223A2235303231303030303130323130363032303030303033222C227061795F7363656E6172696F223A2253574950455F43415244222C227472616E735F74797065223A2231227D2C22726573706F6E73655F636F6465223A22303030222C22726573706F6E73655F6D7367223A22222C22726571756573745F6964223A22313131313131222C22746F706963223A226563726875622E7061792E6F72646572227D
05CC33
提示

第二行是MessageData,这仅用于显示目的,实际的HEX不换行

响应报文 (JSON)

{
"app_id": "your app id",
"biz_data": {
"merchant_order_no": "12320231220110257",
"order_amount": "10",
"trans_status": "2",
"price_currency": "USD",
"trans_no": "5021000010210602000003",
"pay_scenario": "SWIPE_CARD",
"trans_type": "1"
},
"response_code": "000",
"response_msg": "",
"request_id": "111111",
"topic": "ecrhub.pay.order"
}

2. 查询交易

消息主题

ecrhub.pay.query

参数 类型 请求 响应 说明
merchant_order_nostringMMMerchant order number.This field represents the order number for the refund request when refunded, different from the order number of the original consumer transaction. No more than 32 alphanumeric characters. Example: 121775014073233368018
price_currencystring-MPrice Currency, compliant with ISO-4217 standard, described with a three-character code Example:USD
order_amountstring-MOrder amount. This field represents the transaction ordered amount, For example, one USD stands for one dollar, not one cent. Example: 34.50
tip_amountstring-OTip amount. This field represents the transaction tip amount. For example, 1 USD stands for one dollar, not one cent. Example: 34.50
cashback_amountstring-OCashback amount. This field represents the amount of cash that can be withdrawn from a card transaction. For example, one USD stands for one dollar, not one cent Example: 10.00
trans_typestring-MTransaction type. Please refer to Transaction type

Example: 1
attachstring-OAdditional data. This field represents allows merchants to submit additional data, which will be returned as is. Example: abc123
trans_nostring-MTransaction number.This field represents PayCloud transaction number, which uniquely identifies a transaction. Example: 5021000010210602000003
trans_statusstring-MM
pay_scenariostring-OPayment scene, If trans_status is '2', the returned data will include this parameters. please refer to Payment scenario

Example: SWIPE_CARD
pay_method_idstring-OPayment method id. If trans_status is '2', the returned data will include this parameters. Please Refer to Payment method

If the TransType is 3, this parameter will not required

Example:Visa
pay_channel_trans_nostring-OPayment channel transaction number, If trans_status is '2', the returned data will include this parameters.such as RRN for Visa, Mastercard, etc. Example: 000000123
discount_bmopcstring-OPayment channel merchant discount amount, If trans_status is '2', the returned data will include this parameters. The merchant gives the customer a preferential amount through the payment channel, and this part of the payment channel will not be settled to the merchant. Example: 3.00
discount_bpcstring-OPayment channel discount amount, If trans_status is '2', the returned data will include this parameters. Discount the amount of the payment channel to the customer, and this part of the funds will be settled into the merchant account. Example: 5.00
trans_end_timestring-OTransaction completed time. If trans_status is '2', the returned data will include this parameters. time zone: Local time zone, the system time zone set by the payment terminal, format: YYYY-MM-DD HH: mm:ss. Example: 2021-06-03 12:48:51

请求报文 (JSON)

{
"app_id": "your app id",
"biz_data": {
"merchant_order_no": "12320231220110257"
},
"request_id": "111111",
"topic": "ecrhub.pay.query",
"timestamp": "1698302992264"
}

请求报文 (HEX)

55AA000001006E
7B226170705F6964223A22796F757220617070206964222C2262697A5F64617461223A7B226D65726368616E745F6F726465725F6E6F223A223132333230323331323230313130323537227D2C22726571756573745F6964223A22313131313131222C22746F706963223A226563726875622E7061792E7175657279222C2274696D657374616D70223A2231363938333032393932323634227D
1ACC33
提示

第二行是MessageData,这仅用于显示目的,实际的HEX不换行

响应报文 (HEX)

55AA0000010051
7B226170705F6964223A22796F757220617070206964222C2262697A5F64617461223A7B226D65726368616E745F6F726465725F6E6F223A223132333230323331323230313130323537222C226F726465725F616D6F756E74223A223130222C227472616E735F737461747573223A2232222C2270726963655F63757272656E6379223A22555344222C227472616E735F6E6F223A2235303231303030303130323130363032303030303033222C227061795F7363656E6172696F223A2253574950455F43415244222C227472616E735F74797065223A2231227D2C22726573706F6E73655F636F6465223A22303030222C22726573706F6E73655F6D7367223A22222C22726571756573745F6964223A22313131313131222C22746F706963223A226563726875622E7061792E7175657279227D
75CC33
提示

第二行是MessageData,这仅用于显示目的,实际的HEX不换行

响应报文 (JSON)

{
"app_id": "your app id",
"biz_data": {
"merchant_order_no": "12320231220110257",
"order_amount": "10",
"trans_status": "2",
"price_currency": "USD",
"trans_no": "5021000010210602000003",
"pay_scenario": "SWIPE_CARD",
"trans_type": "1"
},
"response_code": "000",
"response_msg": "",
"request_id": "111111",
"topic": "ecrhub.pay.query"
}

3. 关闭交易

消息主题

ecrhub.pay.close

参数 类型 请求 响应 说明
merchant_order_nostringMMMerchant order number.This field represents the order number for the refund request when refunded, different from the order number of the original consumer transaction. No more than 32 alphanumeric characters. Example: 121775014073233368018

请求报文 (JSON)

{
"app_id": "your app id",
"biz_data": {
"merchant_order_no": "12320231220110257"
},
"request_id": "111111",
"topic": "ecrhub.pay.close",
"timestamp": "1698302992265"
}

请求示例报文 (HEX)

55AA000001006E
7B226170705F6964223A22796F757220617070206964222C2262697A5F64617461223A7B226D65726368616E745F6F726465725F6E6F223A223132333230323331323230313130323537227D2C22726571756573745F6964223A22313131313131222C22746F706963223A226563726875622E7061792E636C6F7365222C2274696D657374616D70223A2231363938333032393932323635227D
05CC33
提示

第二行是MessageData,这仅用于显示目的,实际的HEX不换行

响应

响应示例报文 (HEX)

55AA0000020058
// code-highlight-starts
7B226170705F6964223A22796F757220617070206964222C2262697A5F64617461223A7B226D65726368616E745F6F726465725F6E6F223A223132333230323331323230313130323537227D2C22726573706F6E73655F636F6465223A22303030222C22726573706F6E73655F6D7367223A22222C22726571756573745F6964223A22313131313131222C22746F706963223A226563726875622E7061792E636C6F7365227D
79CC33
提示

第二行是MessageData,这仅用于显示目的,实际的HEX不换行

响应报文 (JSON)

{
"app_id": "your app id",
"biz_data": {
"merchant_order_no": "12320231220110257"
},
"response_code": "000",
"response_msg": "",
"request_id": "111111",
"topic": "ecrhub.pay.close"
}