Installment Payments
Topics covered on this page
Installment payments allow customers to split one large payment into several smaller payments over a fixed period. Opn offers a new Installment Payments flow and provides a set of APIs that allow you to offer your customers this convenient payment method.
For the legacy integration with Installment payments using the redirect payment flow, please refer to the Redirect Integration.
How to enable
- Supported Countries: Thailand
- Minimum API version:
2017-11-02
To enable Installment Payments, send an email requesting this feature to support@opn.ooo. You will need to review and accept new terms and conditions.
Supported cards
Credit Card | Source type |
Installment Term Lengths (months) | Minimum Monthly Amount (THB) |
---|---|---|---|
Krungsri | installment_wlb_bay |
3, 4, 6, 9, 10 | 500 |
Bangkok Bank | installment_wlb_bbl |
3, 4, 6, 8, 9, 10 | 500 |
Krungsri First Choice | installment_wlb_first_choice |
3, 4, 6, 9, 10, 12, 18, 24, 36 | 300 |
Krungthai Card (KTC) | installment_wlb_ktc |
3, 4, 5, 6, 7, 8, 9, 10 | 300 |
Siam Commercial Bank | installment_wlb_scb |
3, 4, 6, 9, 10 | 500 |
TMBThanachart Bank | installment_wlb_ttb |
3, 4, 6, 10 | 500 |
United Overseas Bank (UOB) | installment_wlb_uob |
3, 4, 6, 10 | 500 |
If the merchant enables Krungsri or Krungsri First Choice installment payments, a 1-baht authorization charge will be issued for those cards during the token creation. The charge will be voided immediately afterwards.
Payment flow
For customers who choose to pay using Installment Payments, you (the merchant) display your own checkout page with relevant Installment details for customer to select.
Once the customer submitted their card details and confirms the payment, the card will be charged the same way as the normal credit card payments flow. This means your current card processing settings will also apply to every charge, and the customer will be redirected to the issuer to authenticate themselves via 3DS. Upon completion, the customer is redirected back to your website.
The following screenshots demonstrate this payment flow. At checkout, the customer selects the installment payment method.
After submitting the credit card with which they would like to pay, the customer is redirected to the external webpage, where they might have to occasionally authenticate themselves. Upon confirmation, the customer will be redirected to your website via the specified return URI.
Setting who pays installment interest
One party, you (the merchant) or the customer, pays the interest for installment payments. We use the term zero-interest installments to reflect when you pay the interest instead of the customer.
Default setting
Set the default party to pay installment interest using the Dashboard. You can override this setting per charge.
Per charge setting
Override the default setting of which party pays installment interest by passing the boolean parameter zero_interest_installments
at both source and charge creation. When set to true
, you, the merchant, pay the interest; when set to false
, the customer pays, when omitted, the default account value is used. The values passed at source and charge creation must match.
If directly charging a source, pass this parameter at charge creation.
Implementation
To create a charge using Installment Payments, make the following API requests.
- Create a new token using Omise.js or one of the mobile SDKs (iOS and Android)
- Create a new payment source (
type
:installment_wlb_bay
,installment_wlb_bbl
,installment_wlb_first_choice
,installment_wlb_ktc
,installment_wlb_scb
,installment_wlb_ttb
, orinstallment_wlb_uob
) using Omise.js or one of the mobile SDKs (iOS and Android) - Create a new charge using token ID and source ID created in Step 1 and 2.
- After receiving the charge completion webhook event, retrieve the charge to verify its status (optional, but recommended).
Use your public key to create the token and Installment Payments source on the client (a customer's browser or mobile phone). Use your secret key to create the Installment Payments 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 card token
Omise.js is a client-side JavaScript library that provides a form with validation allowing you to easily collect card information. It sends sensitive card data to our secure vault server and generates a token in return.
When the customer confirms that they wish to pay with a card, create a new token specifying card details in a card
object.
Tokens can be used only once.
The following examples demonstrate the creation of a new card token for ฿4,000. Replace the omise_public_key
and $OMISE_PUBLIC_KEY
variables with your test public key found on the dashboard: https://dashboard.omise.co/test/keys
Using Omise.js, the type parameter is supplied as the first argument to the createToken method.
Omise.setPublicKey(omise_public_key);
Omise.createToken('card', {
"name": "Somchai Prasert",
"number": "4242424242424242",
"expiration_month": "10",
"expiration_year": "2022",
"city": "Bangkok",
"postal_code": "10320",
"security_code": "123"
}, function(statusCode, response) {
console.log(response)
});
For testing, you can create the same request using curl.
curl https://vault.omise.co/tokens \
-X POST \
-u $OMISE_PUBLIC_KEY: \
-d "card[name]=Somchai Prasert" \
-d "card[city]=Bangkok" \
-d "card[postal_code]=10320" \
-d "card[number]=4242424242424242" \
-d "card[security_code]=123" \
-d "card[expiration_month]=12" \
-d "card[expiration_year]=2024"
{
"object": "token",
"id": "tokn_test_61kll5fvfpl3de15nfl",
"livemode": false,
"location": "https://vault.omise.co/tokens/tokn_test_61kll5fvfpl3de15nfl",
"used": false,
"charge_status": "unknown",
"card": {
"object": "card",
"id": "card_test_61kll5fumo67zjve5c8",
"livemode": false,
"location": null,
"deleted": false,
"street1": null,
"street2": null,
"city": "Bangkok",
"state": null,
"phone_number": null,
"postal_code": "10320",
"country": "us",
"financing": "credit",
"bank": "JPMORGAN CHASE BANK N.A.",
"brand": "Visa",
"fingerprint": "Q6R3DvbIFH5NaamyDrhX7FDbTxBfC7ff6HVkWynGhXc=",
"first_digits": null,
"last_digits": "4242",
"name": "Somchai Prasert",
"expiration_month": 12,
"expiration_year": 2024,
"security_code_check": true,
"tokenization_method": null,
"created_at": "2024-10-29T10:58:10Z"
},
"created_at": "2024-10-29T10:58:10Z"
}
The id
attribute is the token identifier (begins with tokn
).
Creating a source
When the customer confirms that they wish to pay with this payment method, create a new source specifying the amount
, currency
, installment_term
, and type
.
Parameter | Type | Description |
---|---|---|
amount |
integer | (required) See Limits |
currency |
string | (required) THB |
installment_term |
integer | (required) Valid installment term length in months |
type |
string | (required) Valid installment source type |
zero_interest_installments |
string | (optional, defaults to account setting) Whether customer or merchant absorbs interest. true when merchant absorbs interest |
The following examples demonstrate the creation of a new Installment Payments 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('installment_wlb_ktc', {
"amount": 400000,
"currency": "THB",
"installment_term": 4
}, 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=installment_wlb_ktc" \
-d "installment_term=4"
{
"object": "source",
"id": "src_test_61kll5k50s30paxuqwo",
"livemode": false,
"location": "/sources/src_test_61kll5k50s30paxuqwo",
"amount": 400000,
"barcode": null,
"bank": null,
"created_at": "2024-10-29T10:58:11Z",
"currency": "THB",
"email": null,
"flow": "redirect",
"installment_term": 4,
"ip": "35.198.236.178",
"absorption_type": "customer",
"name": null,
"mobile_number": null,
"phone_number": null,
"platform_type": null,
"scannable_code": null,
"billing": null,
"shipping": null,
"items": [],
"references": null,
"provider_references": null,
"store_id": null,
"store_name": null,
"terminal_id": null,
"type": "installment_wlb_ktc",
"zero_interest_installments": false,
"charge_status": "unknown",
"receipt_amount": null,
"discounts": [],
"promotion_code": null
}
The id
attribute is the source identifier (begins with src
).
Creating a charge
Create a charge specifying the parameters return_uri
, source
, card
, 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.card
specifies the token identifier.amount
andcurrency
must matchamount
andcurrency
of the source.
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 theid
of the source. - Replace
$TOKEN_ID
with theid
of the card token.
For installments, the following parameter may also be passed:
zero_interest_installments
, the value of which must match the value in the source.
curl https://api.omise.co/charges \
-u $OMISE_SECRET_KEY: \
-d "source=$SOURCE_ID" \
-d "amount=400000" \
-d "currency=THB" \
-d "card=$TOKEN_ID" \
-d "return_uri=https://example.com/orders/345678/complete"
{
"object": "charge",
"id": "chrg_test_61kll5nadrj5og3ozy8",
"location": "/charges/chrg_test_61kll5nadrj5og3ozy8",
"amount": 400000,
"acquirer_reference_number": null,
"net": 384378,
"fee": 14600,
"fee_vat": 1022,
"interest": 0,
"interest_vat": 0,
"funding_amount": 400000,
"refunded_amount": 0,
"transaction_fees": {
"fee_flat": "0.0",
"fee_rate": "3.65",
"vat_rate": "7.0"
},
"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_61kll5nadrj5og3ozy8/refunds",
"order": "chronological",
"from": "1970-01-01T00:00:00Z",
"to": "2024-10-29T10:58:11Z"
},
"link": null,
"description": null,
"metadata": {},
"card": {
"object": "card",
"id": "card_test_61kll52710s5adfxrd6",
"livemode": false,
"location": null,
"deleted": false,
"street1": null,
"street2": null,
"city": "Bangkok",
"state": null,
"phone_number": null,
"postal_code": "10320",
"country": "us",
"financing": "credit",
"bank": "JPMORGAN CHASE BANK N.A.",
"brand": "Visa",
"fingerprint": "Q6R3DvbIFH5NaamyDrhX7FDbTxBfC7ff6HVkWynGhXc=",
"first_digits": null,
"last_digits": "4242",
"name": "Somchai Prasert",
"expiration_month": 9,
"expiration_year": 2025,
"security_code_check": true,
"tokenization_method": null,
"created_at": "2024-10-29T10:58:08Z"
},
"source": {
"object": "source",
"id": "src_test_61kll4mxo8iu8ke8luc",
"livemode": false,
"location": "/sources/src_test_61kll4mxo8iu8ke8luc",
"amount": 400000,
"barcode": null,
"bank": null,
"created_at": "2024-10-29T10:58:06Z",
"currency": "THB",
"email": null,
"flow": "redirect",
"installment_term": 4,
"ip": "35.198.236.178",
"absorption_type": "customer",
"name": null,
"mobile_number": null,
"phone_number": null,
"platform_type": null,
"scannable_code": null,
"billing": null,
"shipping": null,
"items": [],
"references": null,
"provider_references": null,
"store_id": null,
"store_name": null,
"terminal_id": null,
"type": "installment_wlb_ktc",
"zero_interest_installments": false,
"charge_status": "pending",
"receipt_amount": null,
"discounts": [],
"promotion_code": null
},
"schedule": null,
"linked_account": null,
"customer": null,
"dispute": null,
"transaction": null,
"failure_code": null,
"failure_message": null,
"status": "pending",
"authorize_uri": "https://pay.omise.co/payments/pay2_test_61kll5nbpzy1mw5o0bc/authorize?acs=true",
"return_uri": "https://example.com/orders/345678/complete",
"created_at": "2024-10-29T10:58:11Z",
"paid_at": null,
"authorized_at": null,
"expires_at": "2024-11-05T10:58:11Z",
"expired_at": null,
"reversed_at": null,
"multi_capture": false,
"zero_interest_installments": false,
"branch": null,
"terminal": null,
"device": null,
"authorized": false,
"capturable": false,
"capture": true,
"disputable": false,
"livemode": false,
"refundable": false,
"partially_refundable": false,
"reversed": false,
"reversible": false,
"voided": false,
"paid": false,
"expired": false,
"can_perform_void": false,
"approval_code": 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 "card=$TOKEN_ID_CHARGE_SOURCE" \
-d "source[type]=installment_wlb_ktc" \
-d "source[installment_term]=4"
Creating a source and charge where customer pays interest
Override the default setting of who pays installment interest by passing the zero_interest_installments
parameter. See setting who pays installment interest for more details.
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 "zero_interest_installments=false" \
-d "card=$TOKEN_ID_CHARGE" \
-d "source[type]=installment_wlb_ktc" \
-d "source[installment_term]=4"
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.
Authorizing the charge
Redirect the customer to the location specified in authorize_uri
so that they can authorize the charge.
The merchant can simulate this authorization phase in test mode by using our test cards.
After the customer has completed the authorization phase, they will be redirected to the location specified in return_uri
.
Receiving the charge completion event
The best way to be notified about the completion of a charge is using webhook events.
Set up a location on the merchant server to receive webhook events, and add this location as a webhook endpoint on the dashboard.
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 as follows.
Failure Code | Description |
---|---|
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. |
failed_processing |
General payment processing failure. |
Voids and refunds
See the Refunds API documentation for information on how to refund an installment payment charge.
Installment payment charges cannot be partially refunded. Only full refunds are supported within 1 year of the transaction date, except for Siam Commercial Bank installments, which are refundable within 180 days.
Limits
- Minimum:
200000
(THB2,000.00) - Maximum:
15000000
(THB150,000.00)
Since each credit card has its own monthly minimum, the effective minimum charge amount may be higher depending on the credit card and installment term length chosen.
For example, a ฿3,300 charge set to be paid over an installment term of 10 months would result a monthly charge of approximately ฿330, below the minimum for Bangkok Bank credit cards, but above the minimum for Kasikorn Bank credit cards.
Related API documentation
How to check the public key and secret key
For information on how to obtain and check the public and secret keys, please refer to this document.