WeChat Pay (Barcode)
Topics covered on this page
Accept in-store payments from WeChat Pay users through your point-of-sale system (POS) using the payment method.
This payment method implements Quick Pay from WeChat Pay allowing you to gain access to one of China's most popular online payment methods without needing a WeChat account or registering for a Chinese bank account. This guide walks you through the payment flow and details on how to implement.
How to enable
- Supported Countries: Thailand
- Minimum API version:
2017-11-02
To enable WeChat Pay (Barcode), send an email requesting this feature to support@omise.co. You will need to review and accept new terms and conditions.
Payment flow
Payers using present their Quick Pay payment code to you. You must scan the payment code using a barcode reader and use it to create a new charge.
WeChat Pay will process the charge. Once you receive the charge completion webhook, you may verify the charge status and confirm the payment with the user.
Implementation
To create a charge using WeChat Pay (Barcode), make the following API requests.
- Create a new charge specifying the required parameters.
- After receiving the charge completion webhook event, retrieve the charge to verify its status (optional, but recommended).
Use your secret key to create the WeChat Pay (Barcode) charge.
Creating a charge
When the payer confirms they wish to use this payment method, create a new charge specifying the following parameters: amount
, currency
, source[type]
(barcode_wechat
), and source[barcode]
.
Parameter | Type | Description |
---|---|---|
amount |
integer | (required) See Limits |
currency |
string | (required) THB |
source[barcode] |
string | (required) WeChat Pay Quick Pay payment code number |
source[type] |
string | (required) barcode_wechat |
The following example demonstrates how to create a new charge using curl.
Replace $OMISE_SECRET_KEY
with the test secret key found on your dashboard.
curl https://api.omise.co/charges \
-u $OMISE_SECRET_KEY: \
-d "amount=400000" \
-d "currency=THB" \
-d "source[barcode]=123456789012345678" \
-d "source[type]=barcode_wechat"
{
"object": "charge",
"id": "chrg_test_5kgg8roaqokhquh5gs2",
"location": "/charges/chrg_test_5kgg8roaqokhquh5gs2",
"amount": 400000,
"net": 400000,
"fee": 0,
"fee_vat": 0,
"interest": 0,
"interest_vat": 0,
"funding_amount": 400000,
"refunded_amount": 0,
"authorized": false,
"capturable": false,
"capture": true,
"disputable": false,
"livemode": false,
"refundable": false,
"reversed": false,
"reversible": false,
"voided": false,
"paid": false,
"expired": false,
"platform_fee": {
"fixed": null,
"amount": null,
"percentage": null
},
"currency": "THB",
"funding_currency": "THB",
"ip": null,
"refunds": {
"object": "list",
"data": [],
"limit": 20,
"offset": 0,
"total": 0,
"location": "/charges/chrg_test_5kgg8roaqokhquh5gs2/refunds",
"order": "chronological",
"from": "1970-01-01T00:00:00Z",
"to": "2020-07-07T03:53:32Z"
},
"link": null,
"description": null,
"metadata": {},
"card": null,
"source": {
"object": "source",
"id": "src_test_5kgg8ro2irh7bf7bu04",
"livemode": false,
"location": "/sources/src_test_5kgg8ro2irh7bf7bu04",
"amount": 400000,
"barcode": "123456789012345678",
"created_at": "2020-07-07T03:53:32Z",
"currency": "THB",
"email": null,
"flow": "offline",
"installment_term": null,
"name": null,
"mobile_number": null,
"phone_number": null,
"scannable_code": null,
"references": null,
"store_id": null,
"store_name": null,
"terminal_id": null,
"type": "barcode_wechat",
"zero_interest_installments": null,
"charge_status": "pending"
},
"schedule": null,
"customer": null,
"dispute": null,
"transaction": null,
"failure_code": null,
"failure_message": null,
"status": "pending",
"authorize_uri": null,
"return_uri": null,
"created_at": "2020-07-07T03:53:32Z",
"paid_at": null,
"expires_at": "2020-07-14T03:53:32Z",
"expired_at": null,
"reversed_at": null,
"zero_interest_installments": true,
"branch": null,
"terminal": null,
"device": null
}
Setting the charge to expire
charges that have not yet been authorized (status=pending
) can be set to expire immediately.
In effect, this cancels the charge.
curl https://api.omise.co/charges/$CHARGE_ID/expire \
-X POST \
-u $OMISE_SECRET_KEY:
Completing the charge
At this point, you have created a new charge with its status
set to pending
.
Other possible values for charge status
are successful
, failed
, and expired
.
The following sections detail how to authorize a charge, receive its completion webhook event, and update its status.
This sequence diagram shows the entire flow.
Authorizing the charge
The payer confirms the payment on their WeChat Pay app using their payment password.
Receiving the charge completion event
The best way for you to be notified of the completion of a charge is using webhook events. Set up a location on your server to receive webhook events, and add this location as a webhook endpoint on the dashboard.
Once a charge is completed, a POST request will be sent to this endpoint with the charge response embedded.
The key
attribute for the event object contains charge.complete
and the data
attribute contains the charge object.
See Events API for event object structure.
Checking the charge status
After receiving this event, retrieve the charge using its id
and confirm that its status
matches the status
of the charge contained in the event.
If the value of status
is successful
, you got paid.
If the value of status
is failed
, check the failure_code
and failure_message
in the charge object for an explanation.
Possible failure codes are listed below.
Failure Code | Description |
---|---|
payment_cancelled |
Payment cancelled by payer. |
failed_processing |
General payment processing failure. |
insufficient_balance |
Insufficient funds in the account or the payment method has reached its limit. |
payment_rejected |
Payment rejected by issuer. |
Voids and refunds
WeChat Pay (Barcode) charges can be partially or fully refunded within 365 days of the transaction date using the API.
curl https://api.omise.co/charges/$REFUNDABLE_CHARGE_ID/refunds \
-u $OMISE_SECRET_KEY: \
-d "amount=400000"
{
"object": "refund",
"id": "rfnd_test_5kgg8s29b01jg71ba95",
"location": "/charges/chrg_test_5kgg8rhubskxp5inxq5/refunds/rfnd_test_5kgg8s29b01jg71ba95",
"livemode": false,
"voided": false,
"currency": "THB",
"amount": 400000,
"metadata": {},
"charge": "chrg_test_5kgg8rhubskxp5inxq5",
"transaction": "trxn_test_5kgg8s2cu7soch3k7fn",
"status": "closed",
"funding_amount": 400000,
"funding_currency": "THB",
"created_at": "2020-07-07T03:53:34Z"
}
Limits
- Minimum:
2000
(THB20.00) - Maximum:
15000000
(THB150,000.00)