Rabbit LINE Pay
Topics covered on this page
Accept online payments using the Rabbit LINE Pay payment method.
This guide walks you through the payment flow and details on how to implement Rabbit LINE Pay.
How to enable
- Supported Countries: Thailand
- Minimum API version:
2017-11-02
To enable Rabbit LINE Pay, send an email requesting this feature to support@opn.ooo. You will need to review and accept new terms and conditions.
Payment flow
Rabbit LINE Pay supports payment on mobile application and website. Customers paying via Rabbit LINE Pay go through a redirect payment flow. This means they are redirected from your website or mobile application to Rabbit LINE Pay's secure checkout page where they authorize and confirm the payment.For mobile a customer can fill in the pass code to complete the payment. For website payment a customer can either scan the QR code using the LINE app on their phone, or login into their LINE account to complete the payment. The following screenshots demonstrate two flows: one by scanning the QR image and one by logging in.
Scanning QR with LINE app
The customer opens the LINE app on their mobile phone ❶ to scan the QR code ❷. After entering the passcode, the customer selects payment method ❸ and reviews the purchase details ❹. The customer completes the payment on their mobile phone ❺ and gets redirected back to merchant's website.
Logging into LINE account
The customer logs into their LINE account and lands on the payment page ❶. The customer must open their LINE app and complete the payment within 20 minutes ❷. The customer enters their passcode to review the purchase details ❸, then confirms the payment by clicking the Pay button ❹. Upon payment completion, the customer is redirected back to merchant's website. ❺
Implementation
To create a charge using Rabbit LINE Pay, make the following API requests.
- Create a new payment source (
type
:rabbit_linepay
) using Omise.js or one of the mobile SDKs (iOS and Android) - Create a new charge using the identifier of the source created in Step 1.
- After receiving the charge completion webhook event, retrieve the charge to verify its status (optional, but recommended).
Use your public key to create the Rabbit LINE Pay source on the client (a customer's browser or mobile phone). Use your secret key to create the Rabbit LINE Pay charge on the server.
If both the creation and charge of a source must happen server-side, you can create and charge the source in a single API request using your secret key.
Creating a source
When the customer confirms that they wish to pay with this payment method, create a new source specifying the amount
, currency
, and type
.
The following examples demonstrate the creation of a new Rabbit LINE Pay source for ฿4,000. Replace the omise_public_key
and $OMISE_PUBLIC_KEY
variables with the test public key found on your dashboard.
Using Omise.js, the
type
parameter is supplied as the first argument to thecreateSource
method.
Omise.setPublicKey(omise_public_key);
Omise.createSource('rabbit_linepay', {
"amount": 400000,
"currency": "THB"
}, function(statusCode, response) {
console.log(response)
});
For testing, you can create the same request using curl.
curl https://api.omise.co/sources \
-u $OMISE_PUBLIC_KEY: \
-d "amount=400000" \
-d "currency=THB" \
-d "type=rabbit_linepay"
{
"object": "source",
"id": "src_test_5ncy6c5i4afb6bua2vk",
"livemode": false,
"location": "/sources/src_test_5ncy6c5i4afb6bua2vk",
"amount": 400000,
"barcode": null,
"bank": null,
"created_at": "2021-03-31T07:55:57Z",
"currency": "THB",
"email": null,
"flow": "redirect",
"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": "rabbit_linepay",
"zero_interest_installments": null,
"charge_status": "unknown",
"receipt_amount": null,
"discounts": []
}
The id
attribute is the source identifier (begins with src
).
Creating a charge
Create a charge specifying the parameters return_uri
, source
, amount
, and currency
.
return_uri
specifies the location on your website to which the customer should be redirected after completing the payment authorization step.source
specifies the source identifier.amount
andcurrency
must matchamount
andcurrency
of the source.
Can support both manual and automatic capture.
The following example demonstrates how to create a new charge using curl.
Replace $OMISE_SECRET_KEY
with your test secret key found on your dashboard.
Replace $SOURCE_ID
with the id
of the source.
The capturable
field in the charge response indicates whether the charge can be captured or not. The three possibilities are as follows:
capturable=false
: charge cannot be captured.capturable=true
andcapture=true
: charge is automatically captured.capturable=true
andcapture=false
: charge is not automatically captured but can be captured manually.
curl https://api.omise.co/charges \
-u $OMISE_SECRET_KEY: \
-d "amount=400000" \
-d "currency=THB" \
-d "return_uri=https://example.com/orders/345678/complete" \
-d "source=$SOURCE_ID"
{
"object": "charge",
"id": "chrg_test_5ncy6cb5qr333lcn4jr",
"location": "/charges/chrg_test_5ncy6cb5qr333lcn4jr",
"amount": 400000,
"net": 384378,
"fee": 14600,
"fee_vat": 1022,
"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_5ncy6cb5qr333lcn4jr/refunds",
"order": "chronological",
"from": "1970-01-01T00:00:00Z",
"to": "2021-03-31T07:55:58Z"
},
"link": null,
"description": null,
"metadata": {},
"card": null,
"source": {
"object": "source",
"id": "src_test_5ncy6bve9qt33g5gpbw",
"livemode": false,
"location": "/sources/src_test_5ncy6bve9qt33g5gpbw",
"amount": 400000,
"barcode": null,
"bank": null,
"created_at": "2021-03-31T07:55:56Z",
"currency": "THB",
"email": null,
"flow": "redirect",
"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": "rabbit_linepay",
"zero_interest_installments": null,
"charge_status": "pending",
"receipt_amount": null,
"discounts": []
},
"schedule": null,
"customer": null,
"dispute": null,
"transaction": null,
"failure_code": null,
"failure_message": null,
"status": "pending",
"authorize_uri": "https://pay.omise.co/payments/pay2_test_5ncy6cbqad4990fj2is/authorize",
"return_uri": "https://example.com/orders/345678/complete",
"created_at": "2021-03-31T07:55:58Z",
"paid_at": null,
"expires_at": "2021-03-31T08:16:28Z",
"expired_at": null,
"reversed_at": null,
"zero_interest_installments": false,
"branch": null,
"terminal": null,
"device": null
}
Creating a source and charge
Alternatively, you can create and charge a source in a single API request.
curl https://api.omise.co/charges \
-u $OMISE_SECRET_KEY: \
-d "amount=400000" \
-d "currency=THB" \
-d "return_uri=http://example.com/orders/345678/complete" \
-d "source[type]=rabbit_linepay"
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
Redirect the customer to location specified in authorize_uri
so that they can authorize the charge.
You can simulate this authorization phase in test mode by visiting the authorize_uri
to manually mark the charge as Successful
or Failed
.
After the customer has completed the authorization phase, they will be redirected to the location you specified in return_uri
.
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 |
---|---|
failed_processing |
General payment processing failure. |
insufficient_balance |
Insufficient funds in the account or the payment method has reached its limit. |
payment_cancelled |
Payment cancelled by payer. |
timeout |
Payer did not take action before charge expiration. |
Voids and Refunds
You can create a full or partial refund through our refund API or from the charge page on your dashboard.
Rabbit LINE Pay charges can be partially or fully refunded within 60 days of the transaction date using the API.
Limits
- Minimum:
2000
(THB20.00) - Maximum:
15000000
(THB150,000.00)