Manage payment methods

View and manage payment methods available in Checkout through your Dashboard

Use dynamic payment methods or manually specify the payment methods to display per checkout session.

This guide covers:

  • How Onerway dynamically displays payment methods
  • How to manually specify payment methods
  • How to view available payment methods in Application Management
  • How to handle delayed notification payment methods

How dynamic payment methods work

Onerway dynamically displays the most relevant payment methods to your customers based on:

  • Payment method preferences you set in the
  • Eligibility factors such as transaction amount, currency, and payment flow

To enable and manage your payment method preferences, go to the Dashboard. Onerway enables certain payment methods for you by default and might enable additional payment methods after you apply for them.

The checkout page displays these payment methods in a default order, and you can configure the display priority in the Dashboard. This way, customers can see popular payment methods suited to local preferences while having the flexibility to choose other options from the menu.

Manually specify payment methods

When creating a Checkout integration, specify to control which payment methods to display. Set productType to ALL to display all available payment methods from Application Management based on the selected currency and country.

{
  "productType": "ALL"  // Display all available payment methods
}

To display only specific payment methods, add the parameter with to filter the Checkout. For example, to show only Alipay+:

{
  "productType": "ALL",
  "lpmsInfo": {
    "lpmsType": "AlipayPlus"  // Display only Alipay+
  }
}

View available payment methods

Check your payment method settings in to see the payment methods you currently accept. This list includes payment methods enabled by default, such as credit cards.

By default, Onerway enables credit cards. If you have applied for other payment methods, you can view each payment method in Application Management. At checkout, Onerway evaluates the currency and any restrictions, then dynamically displays supported payment methods to customers.

Handle delayed notification payment methods

Some payment methods don't provide immediate payment confirmation. Depending on the payment method you integrate, payment confirmation may be delayed.

Payment MethodTypeTypical Delay
TrustlyBank transfer2-5 days
KonbiniConvenience storeUp to 14 days
OXXOConvenience storeUp to 14 days

When this happens, the order status in Onerway shows (Processing). Wait for the webhook notificationAPI until you receive the final order status before fulfilling the order.