If you have an existing iOS Components integration, you can use our Redirect Component to redirect the shopper to complete the payment. As with other redirect payment methods, you need to handle the redirect after the shopper returns to your app.
Before you begin
This page explains how to add GoPay to your existing iOS Components integration. The iOS Components integration works the same way for all payment methods. If you haven't done this integration yet, refer to our Components integration guide.
Before starting your GoPay integration:
- Make sure that you have set up your back end implementation for making API requests.
- Add GoPay in your Customer Area.
Show GoPay in your payment form
Include GoPay in the list of available payment methods. You don't need to collect any information from the shopper in your payment form.
- Specify in your /paymentMethods request:
- countryCode: Any supported country. For example, ID
- amount.currency: Any supported currency. For example, IDR.
- amount.value: The value of the payment, in minor units.
The response contains paymentMethod.type
: gopay_wallet.
We provide logos for GoPay which you can use on your payment form. For more information, refer to Downloading logos.
Make a payment
GoPay only supports recurring payments.
The first time your shopper makes a payment, you need to create a token. For following payments, make a payment with a token.
Create a token
-
From your server, make a /payments request and create a token by including:
paymentMethod
: Thedata.paymentMethod
from your client app.returnUrl
: The URL where the shopper will be redirected back to after completing the payment. Use the custom URL for your app, for example,my-app://
. For more information on setting custom URL schemes, refer to the Apple Developer documentation.storePaymentMethod
: true.shopperReference
: Your unique identifier for the shopper (minimum length three characters).shopperInteraction
: "Ecommerce".
curl https://checkout-test.adyen.com/v66/payments \ -H "x-API-key: YOUR_X-API-KEY" \ -H "content-type: application/json" \ -d '{ "amount": { "currency": "IDR", "value": 10000 }, "merchantAccount": "YOUR_MERCHANT_ACCOUNT", "{hint:state.data.paymentMethod from onSubmit}paymentMethod{/hint}":{ "type":"gopay_wallet" }, "reference": "YOUR_ORDER_REFERENCE", "returnUrl": "my-app://", "shopperLocale" : "ID", "storePaymentMethod": true, "shopperReference": "YOUR_UNIQUE_SHOPPER_ID", "shopperInteraction": "Ecommerce" }'
# Set your X-API-KEY with the API key from the Customer Area. adyen = Adyen::Client.new adyen.api_key = "YOUR_X-API-KEY" response = adyen.checkout.payments({ :amount => { :currency => "IDR", :value => 1000 }, :reference => "YOUR_ORDER_NUMBER", :paymentMethod => { :type => "gopay_wallet" }, :returnUrl => "my-app://", :merchantAccount => "YOUR_MERCHANT_ACCOUNT", :shopperLocale => "ID", :storePaymentMethod => true, :shopperReference => "YOUR_UNIQUE_SHOPPER_ID", :shopperInteraction => "Ecommerce" })
// Set YOUR_X-API-KEY with the API key from the Customer Area. // Change to Environment.LIVE and add the Live URL prefix when you're ready to accept live payments. Client client = new Client("YOUR_X-API-KEY", Environment.TEST); Checkout checkout = new Checkout(client); PaymentsRequest paymentsRequest = new PaymentsRequest(); String merchantAccount = "YOUR_MERCHANT_ACCOUNT"; paymentsRequest.setMerchantAccount(merchantAccount); Amount amount = new Amount(); amount.setCurrency("IDR"); amount.setValue(10000); paymentsRequest.setAmount(amount); DefaultPaymentMethodDetails paymentMethodDetails = new DefaultPaymentMethodDetails(); paymentMethodDetails.setType("gopay_wallet"); paymentsRequest.setPaymentMethod(paymentMethodDetails); paymentsRequest.setReference("YOUR_ORDER_NUMBER"); paymentsRequest.setReturnUrl("my-app://"); paymentsRequest.setShopperLocale("ID"); paymentsRequest.setStorePaymentMethod(true); paymentsRequest.setShopperReference("YOUR_UNIQUE_SHOPPER_ID"); paymentsRequest.setShopperInteraction("Ecommerce"); PaymentsResponse paymentsResponse = checkout.payments(paymentsRequest);
// Set your X-API-KEY with the API key from the Customer Area. $client = new \Adyen\Client(); $client->setXApiKey("YOUR_X-API-KEY"); $service = new \Adyen\Service\Checkout($client); $params = array( "amount" => array( "currency" => "IDR", "value" => 10000 ), "reference" => "YOUR_ORDER_NUMBER", "paymentMethod" => array( "type" => "gopay_wallet" ), "returnUrl" => "my-app://", "merchantAccount" => "YOUR_MERCHANT_ACCOUNT", "shopperLocale" => "ID", "storePaymentMethod" => true, "shopperReference" => "YOUR_UNIQUE_SHOPPER_ID", "shopperInteraction" => "Ecommerce" ); $result = $service->payments($params);
#Set your X-API-KEY with the API key from the Customer Area. adyen = Adyen.Adyen() adyen.client.xapikey = 'YOUR_X-API-KEY' result = adyen.checkout.payments({ 'amount': { 'value': 10000, 'currency': 'IDR' }, 'reference': 'YOUR_ORDER_NUMBER', 'paymentMethod': { 'type': 'gopay_wallet' }, 'returnUrl': 'my-app://', 'merchantAccount': 'YOUR_MERCHANT_ACCOUNT', 'shopperLocale' : 'ID', 'storePaymentMethod': true, 'shopperReference': 'YOUR_UNIQUE_SHOPPER_ID', 'shopperInteraction': 'Ecommerce' })
// Set your X-API-KEY with the API key from the Customer Area. var client = new Client ("YOUR_X-API-KEY", Environment.Test); var checkout = new Checkout(client); var amount = new Model.Checkout.Amount("IDR", 10000); var details = new Model.Checkout.DefaultPaymentMethodDetails{ Type = "gopay_wallet" }; var paymentsRequest = new Model.Checkout.PaymentRequest { Reference = "YOUR_ORDER_NUMBER", Amount = amount, ReturnUrl = @"my-app://", MerchantAccount = "YOUR_MERCHANT_ACCOUNT", PaymentMethod = details, ShopperLocale ="ID", StorePaymentMethod = true, ShopperReference = "YOUR_UNIQUE_SHOPPER_ID", ShopperInteraction = "Ecommerce" }; var paymentResponse = checkout.Payments(paymentsRequest);
// Set your X-API-KEY with the API key from the Customer Area. const {Client, Config, CheckoutAPI} = require('@adyen/api-library'); const config = new Config(); // Set your X-API-KEY with the API key from the Customer Area. config.apiKey = '[API_KEY]'; config.merchantAccount = '[YOUR_MERCHANT_ACCOUNT]'; const client = new Client({ config }); client.setEnvironment("TEST"); const checkout = new CheckoutAPI(client); checkout.payments({ amount: { currency: "IDR", value: 10000 }, paymentMethod: { type: 'gopay_wallet' }, reference: "YOUR_ORDER_NUMBER", merchantAccount: config.merchantAccount, returnUrl: "my-app://", shopperLocale : "ID", storePaymentMethod: true, shopperReference: "YOUR_UNIQUE_SHOPPER_ID", shopperInteraction: "Ecommerce" }).then(res => res);
The response contains the
action
object with information about the redirect.{ "resultCode": "RedirectShopper", "action": { "paymentData": "Ab02b4c0!BQABAgCSZT7t...", "paymentMethodType": "gopay_wallet", "method": "GET", "type": "redirect", "url":"my-app://" }, "details": [ { "key": "redirectResult", "type": "text" } ], "paymentData": "Ab02b4c0!BQABAgCSZT7t...", "redirect": { "method": "GET", "url":"my-app://" } }
-
Pass the
action
object to your client app. -
Use the Redirect Component to redirect the shopper to GoPay.
-
After the shopper is redirected to your app, make a POST /payments request from your server and provide the
data
from thedidProvide
method from your client app. -
The /payments/details response contains the
recurring.recurringDetailReference
. This is the shopper's token.{ "additionalData" : { "recurring.shopperReference" : "YOUR_UNIQUE_SHOPPER_ID", "requestAmount" : "10000", "GoPay.gopayAccountId" : "GOPAY_ACCOUNT_ID", "recurring.recurringDetailReference" : "SHOPPER_PAYMENT_TOKEN", "requestCurrencyCode" : "IDR" }, "pspReference" : "88154795347618C", "resultCode" : "Authorised", "amount" : { "currency" : "IDR", "value" : 10000 }, "merchantReference" : "YOUR_ORDER_NUMBER" }
You can also get the token from a notification webhook when the payment has been settled. The notification contains:
eventCode
: RECURRING_CONTRACToriginalReference
: ThepspReference
of the initial payment.-
pspReference
: This is the token that you need to make recurring payments for this shopper.Make sure that your server is able to receive RECURRING_CONTRACT as part of your standard notifications. If you have not requested for this additional configuration yet, contact our Support Team.
Continue to Present the payment result.
Make a payment with a token
-
From your server, make a /payments request and create a token by including:
paymentMethod.storedPaymentMethodId
: The shopper's payment token.paymentMethod.type
: gopay_wallet.shopperReference
: Your unique identifier for the shopper (minimum length three characters).shopperInteraction
: "ContAuth".recurringProcessingModel
: "Subscription".
curl https://checkout-test.adyen.com/v66/payments \ -H "x-API-key: YOUR_X-API-KEY" \ -H "content-type: application/json" \ -d '{ "amount":{ "value":10000, "currency":"IDR" }, "paymentMethod":{ "type":"gopay_wallet", "storedPaymentMethodId":"7219687191761347" }, "reference":"YOUR_ORDER_NUMBER", "merchantAccount":"YOUR_MERCHANT_ACCOUNT", "shopperReference":"YOUR_UNIQUE_SHOPPER_ID", "shopperInteraction":"ContAuth", "recurringProcessingModel": "Subscription", "returnUrl": "my-app://" }'
# Set your X-API-KEY with the API key from the Customer Area. adyen = Adyen::Client.new adyen.api_key = "YOUR_X-API-KEY" response = adyen.checkout.payments({ :amount => { :currency => "IDR", :value => 10000 }, :reference => "YOUR_ORDER_NUMBER", :paymentMethod => { :type => "gopay_wallet", :storedPaymentMethodId => "7219687191761347" }, :returnUrl => "my-app://", :shopperReference => "YOUR_UNIQUE_SHOPPER_ID", :merchantAccount => "YOUR_MERCHANT_ACCOUNT", :shopperInteraction => "ContAuth", :recurringProcessingModel => "Subscription" })
// Set YOUR_X-API-KEY with the API key from the Customer Area. // Change to Environment.LIVE and add the Live URL prefix when you're ready to accept live payments. Client client = new Client("YOUR_X-API-KEY", Environment.TEST); Checkout checkout = new Checkout(client); PaymentsRequest paymentsRequest = new PaymentsRequest(); String merchantAccount = "YOUR_MERCHANT_ACCOUNT"; paymentsRequest.setMerchantAccount(merchantAccount); Amount amount = new Amount(); amount.setCurrency("IDR"); amount.setValue(10000); paymentsRequest.setAmount(amount); DefaultPaymentMethodDetails paymentMethodDetails = new DefaultPaymentMethodDetails(); paymentMethodDetails.storedPaymentMethodId("7219687191761347"); paymentMethodDetails.setType("gopay_wallet"); paymentsRequest.setPaymentMethod(paymentMethodDetails); paymentsRequest.setReference("YOUR_ORDER_NUMBER"); paymentsRequest.setReturnUrl("my-app://"); paymentsRequest.setShopperReference("YOUR_UNIQUE_SHOPPER_ID"); paymentsRequest.setShopperInteraction("ContAuth"); paymentsRequest.setRecurringProcessingModel("Subscription"); PaymentsResponse paymentsResponse = checkout.payments(paymentsRequest);
// Set your X-API-KEY with the API key from the Customer Area. $client = new \Adyen\Client(); $client->setXApiKey("YOUR_X-API-KEY"); $service = new \Adyen\Service\Checkout($client); $params = array( "amount" => array( "currency" => "IDR", "value" => 10000 ), "reference" => "YOUR_ORDER_NUMBER", "paymentMethod" => array( "type" => "gopay_wallet", "storedPaymentMethodId" => "7219687191761347" ), "returnUrl" => "my-app://", "shopperReference" => "YOUR_UNIQUE_SHOPPER_ID", "recurringProcessingModel" => "Subscription", "shopperInteraction" => "ContAuth", "merchantAccount" => "YOUR_MERCHANT_ACCOUNT" ); $result = $service->payments($params);
#Set your X-API-KEY with the API key from the Customer Area. adyen = Adyen.Adyen() adyen.client.xapikey = 'YOUR_X-API-KEY' result = adyen.checkout.payments({ 'amount': { 'value': 10000, 'currency': 'IDR' }, 'reference': 'YOUR_ORDER_NUMBER', 'paymentMethod': { 'type': 'gopay_wallet', 'storedPaymentMethodId': '7219687191761347' }, 'returnUrl': 'my-app://', 'shopperReference': 'YOUR_UNIQUE_SHOPPER_ID' 'merchantAccount': 'YOUR_MERCHANT_ACCOUNT', 'shopperInteraction':'ContAuth', 'recurringProcessingModel': 'Subscription' })
// Set your X-API-KEY with the API key from the Customer Area. var client = new Client ("YOUR_X-API-KEY", Environment.Test); var checkout = new Checkout(client); var amount = new Model.Checkout.Amount("IDR", 10000); var details = new Model.Checkout.DefaultPaymentMethodDetails{ Type = "gopay_wallet", StoredPaymentMethodId = "7219687191761347" }; var paymentsRequest = new Model.Checkout.PaymentRequest { Reference = "YOUR_ORDER_NUMBER", Amount = amount, ReturnUrl = @"my-app://", MerchantAccount = "YOUR_MERCHANT_ACCOUNT", ShopperReference = "YOUR_UNIQUE_SHOPPER_ID", RecurringProcessingModel = "Subscription", ShopperInteraction = "ContAuth", PaymentMethod = details }; var paymentResponse = checkout.Payments(paymentsRequest);
// Set your X-API-KEY with the API key from the Customer Area. const {Client, Config, CheckoutAPI} = require('@adyen/api-library'); const config = new Config(); // Set your X-API-KEY with the API key from the Customer Area. config.apiKey = '[API_KEY]'; config.merchantAccount = '[YOUR_MERCHANT_ACCOUNT]'; const client = new Client({ config }); client.setEnvironment("TEST"); const checkout = new CheckoutAPI(client); checkout.payments({ amount: { currency: "IDR", value: 10000 }, paymentMethod: { type: 'gopay_wallet', storedPaymentMethodId: "7219687191761347" }, reference: "YOUR_ORDER_NUMBER", merchantAccount: config.merchantAccount, shopperReference: "YOUR_UNIQUE_SHOPPER_ID", returnUrl: "my-app://", shopperInteraction: "ContAuth", recurringProcessingModel: "Subscription" }).then(res => res);
Present the payment result
Use the resultCode that you received in the /payments/details response to present the payment result to your shopper.
The resultCode
values you can receive for GoPay are:
resultCode | Description | Action to take |
---|---|---|
Authorised | The payment was successful. | Inform the shopper that the payment has been successful. |
Cancelled | The shopper cancelled the payment while on GoPay's website. | Ask the shopper whether they want to continue with the order, or ask them to select a different payment method. |
Error | There was an error when the payment was being processed. | Inform the shopper that there was an error processing their payment. The response contains a refusalReason , indicating the cause of the error. |
Pending or Received |
The shopper has completed the payment but the final result is not yet known. | Inform the shopper that you've received their order, and are waiting for the payment to be completed. To know the final result of the payment, wait for the AUTHORISATION notification webhook. |
Refused | The payment was refused by GoPay. | Ask the shopper to try the payment again using a different payment method. |
If the shopper closed the browser and failed to return to your website, wait for notification webhooks to know the outcome of the payment. The notification webhooks you can receive for GoPay are:
eventCode | success field | Description | Action to take |
---|---|---|---|
AUTHORISATION | false | The transaction failed. | Cancel the order and inform the shopper that the payment failed. |
AUTHORISATION | true | The shopper successfully completed the payment. | Inform the shopper that the payment has been successful and proceed with the order. |
OFFER_CLOSED | true | The shopper did not complete the payment. | Cancel the order and inform the shopper that the payment timed out. |
Test and go live
Use the following credentials to test GoPay :
Phone number | PIN | One-time password |
---|---|---|
6211295671000 | 246802 | 123456 |
6511220000 | 246802 | 123456 |
913129567100 | 246802 | 123456 |
Check the status of GoPay test payments in your Customer Area > Transactions > Payments.
Before you can accept live GoPay payments, you need to submit a request for GoPay in your live Customer Area.