Last Updated: 14 January 2025 | Change Log
Konbini
The Konbini and Pay-easy payment method is a collection of payment types that customers in Japan can use to shop online.
Make yourself familiar with our API Principles to ensure a resilient integration.
Product Overview
Your customers can complete their payment with one of the following:
Offline cash payment at a convenience store (Konbini)
Offline cash/electronic payment at an ATM (Pay-easy)
Online electronic payment by internet banking (Pay-easy)
Feature summary
Payment type | Country | Currencies | Recurring | Reversals | Partial Reversals | Disputes |
---|---|---|---|---|---|---|
E-Cash | Japan | JPY | ❌ | ❌ | ❌ | ❌ |
Minimum Transaction Value: 100 JPY
Maximum Transaction Values:
The maximum amount for a single transaction depends on what payment option the customer chooses. The default limits are:
299.000 JPY at a convenience store
99.000 JPY at an ATM with cash
999.999 JPY at an ATM with a cash card or with internet banking
In addition Internet banks may set their own limits.
Get Started
Get started using our API Reference and set your headers.
Request
POST
https://try.access.worldpay.com/apmPayments
Example request
{ "paymentId": "HZ75WBkfRwmD9YzLSZFnQ--xazN30hqhileEoUF53VKlDSUrxrcX5x_wn93uYUZB26bWaGtSc4n1mbKHCn5p1tAsrh_YcN6kEXom71Xl4C2K6uz6RKmSmP_m7-TgEHezOhzH5eLvBJHPh6ir8ugqJqGjb7dlrQPJ4byuGHVAMZ8", "lastEvent": "pending", "_links": { "self": { "href": "https://try.access.worldpay.com/apmPayments/HZ75WBkfRwmD9YzLSZFnQ--xazN30hqhileEoUF53VKlDSUrxrcX5x_wn93uYUZB26bWaGtSc4n1mbKHCn5p1tAsrh_YcN6kEXom71Xl4C2K6uz6RKmSmP_m7-TgEHezOhzH5eLvBJHPh6ir8ugqJqGjb7dlrQPJ4byuGHVAMZ8" } }, "_actions": {}, "redirect": "https://mock.hpp.worldpay.com/app/hpp/xyz/integration/wpg?Ticket=12345678&OrderKey=blah", "paymentInstrument": { "method": "paypal", "type": "redirect" } }
Parameters
Used to route the request in Access Worldpay, created as part of on-boarding.
Object that contains the payment type and details.
The type of instrument.
The value of the payment.
The amount in the lowest denomination of the currency e.g. pennies for GBP, cents for USD.
The supported ISO 4217 currency codes.
The description shown on your customer's bank statement for the payment.
The type of instruction.
Indicates whether the transaction should be sent for settlement now = true
, or later = false
at a time of your choosing.
Response
Successful request response
- an HTTP code
201
- an
id
which is unique to the payment - we recommend storing the "id" as this can be used to manage the payment later - a
redirect
to redirect your customer to the APM provider to complete the payment - an link to query the payment status
- an object which will give flow information such as
method
(e.g.konbini
) and type (direct
)
Example Response
{
"paymentId": "uK9Oh5zz4yKhGuFofhhnC056-K6qn-w8Krt2pRT2oSzwh_KRcHUrrs1qJtQso9gjgJ_wwjT869eMBB_T4PM4D6HdjtgfjDBh7htEkjHxp4Q_KzkRIENkZoejad--FtjVrMslJn1mvz4mwr-TuKlP9ZAhBEzSApkfhL__fXCo-vMkR1a2Zrj_R8rGSgu6m2Wd",
"lastEvent": "pending",
"_links": {
"self": {
"href": "https://try.access.worldpay.com/apmPayments/uK9Oh5zz4yKhGuFofhhnC056-K6qn-w8Krt2pRT2oSzwh_KRcHUrrs1qJtQso9gjgJ_wwjT869eMBB_T4PM4D6HdjtgfjDBh7htEkjHxp4Q_KzkRIENkZoejad--FtjVrMslJn1mvz4mwr-TuKlP9ZAhBEzSApkfhL__fXCo-vMkR1a2Zrj_R8rGSgu6m2Wd"
}
},
"_actions": {},
"https://secure-test.worldpay.com/jsp/test/shopper/APMSTSimulator.jsp?customerRef=3417843726&paymentMethod=Konbini&country=DE",
"paymentInstrument": {
"method": "konbini",
"type": "direct"
}
}
Errors
Check out our API reference for the full error code schema.
Next Steps