- METHOD TYPEE-wallet
- PAYMENTS
- PAYOUTS
- REFUNDS
- RECURRING
Introduction
Quick Response Code Indonesian Standard (Abbreviated as QRIS) is a standardized QR code, which facilitates cashless payments in Indonesia. With QRIS, customers can make payments by scanning the QR code using any supporting QRIS E-wallet payment application.
Supported Countries
- Indonesia
Supported Currencies
- IDR
Payment (Deposit) Flow
Press tab to open…
Follow these steps to perform a payment using Nuvei REST API integration:
1. Generate a sessionToken
Press here for details.
2. Send a /payment
Request
Perform the payment by sending a /payment
request with its mandatory parameters including:
userTokenId
– Unique customer identifier in merchant system.Amount
paymentOption.alternativePaymentMethod
class containing:paymentMethod
: “apmgw_QRIS“
deviceDetails
class containing:ipAddress
billingAddress
class containing:firstname
,lastname
,country
,email
userDetails
class containing:firstname
,lastname
,country
,email
Example /payment
Request
{ "sessionToken": "<sessionToken from /getSessionToken>", "merchantId": "<your merchantId>", "merchantSiteId": "<your merchantSiteId>", "userTokenId": "<unique customer identifier in merchant system>", "paymentOption": { "alternativePaymentMethod": { "paymentMethod": "apmgw_QRIS", } }, "currency": "IDR", "amount": "100", "deviceDetails": {"ipAddress": "<customer's IP address>"}, "billingAddress": { "firstName": "John", "lastName": "Smith", "email": "john.smith@email.com", "county": "ID" }, "userDetails": { "firstName": "John", "lastName": "Smith", "email": "john.smith@email.com", "country": "ID", }, "timeStamp": "<YYYYMMDDHHmmss>", "checksum": "<calculated checksum>" }
Example /payment
Response
{ "orderId": "39143501", "userTokenId": "<unique customer identifier in merchant system>", "paymentOption": { "redirectUrl": "https://jumpbox.safecharge.com/dmz/TWOC2PRedirect/PaymentPageProxy.aspx?&amount=000000005000¤cy=360&customer_email=test@test.com&enable_store_card=N&invoice_no=39553161-20322191&ipp_interest_type=&default_lang=en&merchant_id=360360000000229&result_url_2=https://jumpbox.safecharge.com/dmz/TWOC2PRedirect/Notification.ashx&order_id=2110000000215199&pan_masked=&pay_category_id=&payment_description=test&payment_expiry=&payment_option=NOBUQRIS&promotion=&request_3ds=&result_url_1=https://jumpbox.safecharge.com/dmz/TWOC2PRedirect/Response.ashx&statement_descriptor=&stored_card_unique_id=&user_defined_1=811D4EE8D8E9982DDC370D21BADC0ED1&user_defined_2=&user_defined_3=&user_defined_4=&user_defined_5=&version=8.5&hash_value=3B25F76FF99B5BB83C35197C21578E5B5F912F4FDF108E54CC4D10BB77317B1D", "card": {} }, "transactionStatus": "REDIRECT", "sessionToken": "sessionToken from /getSessionToken", "internalRequestId": 26441241, "status": "SUCCESS", "errCode": 0, "reason": "", "merchantId": "<your merchantId>", "merchantSiteId": "<your merchantSiteId>", "version": "1.0" }
After the transaction is processed, Nuvei sends a Direct Merchant Notification (DMN) that includes the result of the transaction to the URL provided in urlDetails.notificationUrl
, which Nuvei recommends including in the /payment
request.
User Experience
The user is redirected to third-party website to complete the payment.