Page Summary
-
The Google Pay API uses request objects to configure payment requests and the user experience within the Google Pay payment sheet.
-
Key request objects include
PaymentOptions,IsReadyToPayRequest,PaymentDataRequest,PaymentDataCallbacks, andPaymentDataRequestUpdate. -
Developers can specify accepted payment methods, transaction details, and optional features like shipping address collection.
-
Response objects, error objects, and tokenization are documented separately with examples and guidance provided.
-
Dynamic price updates are supported through callbacks, allowing for flexible pricing during the checkout process.
This reference describes the Google Pay API request object options to use with your website. There are several request objects to configure to make requests to the Google Pay API. To configure the expected experience, a request object is passed to a class method in the Google Pay API client library.
PaymentOptions
Configure this object for a production environment once you've tested your implementation and you're ready to receive payments from shoppers.
If you set up Dynamic Price Updates in your integration, be sure to add
MerchantInfo and
PaymentDataCallbacks
fields.
| Property | Type | Necessity | Description |
|---|---|---|---|
environment |
string | Optional |
|
merchantInfo |
MerchantInfo | Optional | This object provides information about the merchant that requests payment data. |
paymentDataCallbacks |
PaymentDataCallbacks | Optional | This object declares the callbacks used for Dynamic Price Updates. |
nonce |
string | Optional |
Optional Content Security Policy (CSP) nonce to apply to all dynamically injected |
Example
The following example configuration uses non-chargeable payment methods that are suitable for a test environment. It includes the merchant info and payment data callback.
{ environment: "TEST", merchantInfo: { merchantName: "Example Merchant", merchantId: "12345678901234567890" }, paymentDataCallbacks: { onPaymentDataChanged: onPaymentDataChanged, onPaymentAuthorized: onPaymentAuthorized } }
IsReadyToPayRequest
This object specifies which payment methods are supported.
| Property | Type | Necessity | Description |
|---|---|---|---|
apiVersion |
number | Required | Major API version. The value is |
apiVersionMinor |
number | Required | Minor API version. The value is |
allowedPaymentMethods |
PaymentMethod[ ] | Required | Specifies support for one or more payment methods supported by the Google Pay API. A |
existingPaymentMethodRequired |
boolean | Optional |
If set to |
Example
This example shows you how to support payment cards and Android device tokens from all supported card networks.
{ "apiVersion": 2, "apiVersionMinor": 0, "allowedPaymentMethods": [ { "type": "CARD", "parameters": { "allowedAuthMethods": ["PAN_ONLY", "CRYPTOGRAM_3DS"], "allowedCardNetworks": ["AMEX", "DISCOVER", "INTERAC", "JCB", "MASTERCARD", "VISA"] } } ] }
PaymentDataRequest
Use this object to configure your site's support for the Google Pay API.
| Property | Type | Necessity | Description |
|---|---|---|---|
apiVersion |
number | Required | Major API version. The value is 2 for this
specification. |
apiVersionMinor |
number | Required | Minor API version. The value is 0 for this
specification. |
merchantInfo |
MerchantInfo | Required | Information about the merchant that requests payment data. |
allowedPaymentMethods |
PaymentMethod[ ] | Required | Specifies support for one or more payment methods supported by the Google Pay API. |
transactionInfo |
TransactionInfo | Conditional | Details about the facilitation of the transaction based upon whether the user agrees to the transaction or not. Includes total price and price status. Exactly, one of the |
recurringTransactionInfo |
RecurringTransactionInfo | Conditional | Details about enrollment for a recurring transaction. |
deferredTransactionInfo |
DeferredTransactionInfo | Conditional | Details about enrollment for a deferred transaction. |
automaticReloadTransactionInfo |
AutomaticReloadTransactionInfo | Conditional | Details about enrollment for automatic reload of a stored balance account. |
callbackIntents |
string[ ] | Optional | Specifies the following callback intents for
PaymentDataCallbacks:
|
offerInfo |
OfferInfo | Optional | Specifies which offers to apply when the payment sheet first loads. |
emailRequired |
boolean | Optional | Set to true to request an email address. |
shippingAddressRequired |
boolean | Optional | Set to true to request a full shipping address. |
shippingAddressParameters |
ShippingAddressParameters | Optional | If shippingAddressRequired is set to true, specify shipping
address restrictions. |
shippingOptionRequired |
boolean | Optional | Set to true when the SHIPPING_OPTION callback intent is used.
This field is required if you implement support for Authorize Payments or Dynamic Price
Updates. For details, see
ShippingOptionParameters. |
shippingOptionParameters |
ShippingOptionParameters[ ] | Optional | Set default options. |
Example
The following example shows you how to support payment cards and Android device tokens from all supported card networks. The payment cards are tokenized for an example gateway. The request is for a payment method to charge a final amount of 12.34 United States dollars.
{ "apiVersion": 2, "apiVersionMinor": 0, "merchantInfo": { "merchantName": "Example Merchant" }, "offerInfo": { "offers": [ { "redemptionCode": "exampleCode", "description": "example description of offer" } ] }, "allowedPaymentMethods": [ { "type": "CARD", "parameters": { "allowedAuthMethods": ["PAN_ONLY", "CRYPTOGRAM_3DS"], "allowedCardNetworks": ["AMEX", "DISCOVER", "INTERAC", "JCB", "MASTERCARD", "VISA"] }, "tokenizationSpecification": { "type": "PAYMENT_GATEWAY", "parameters": { "gateway": "example", "gatewayMerchantId": "exampleGatewayMerchantId" } } } ], "transactionInfo": { "totalPriceStatus": "FINAL", "totalPrice": "12.34", "currencyCode": "USD" } }
PaymentDataCallbacks
If your integration uses Dynamic Price Updates, be sure to add the following
onPaymentDataChanged
and onPaymentAuthorized
callbacks:
| Property | Type | Necessity | Description |
|---|---|---|---|
onPaymentDataChanged |
function | Optional | Invoked when the following callbackIntents values are set in
PaymentDataRequest:
|
onPaymentAuthorized |
function | Required | Invoked when the following callbackIntents value is set in
PaymentDataRequest:
|
Example
The following example configuration uses the callbacks needed to set up Dynamic Price Updates:
{ "onPaymentDataChanged": onPaymentDataChanged, "onPaymentAuthorized": onPaymentAuthorized }
PaymentDataRequestUpdate
This object specifies new transaction info, shipping options and error to update the payment sheet.
| Property | Type | Necessity | Description |
|---|---|---|---|
newOfferInfo |
OfferInfo | Optional | Updates the active offers in the payment sheet. |
newTransactionInfo |
TransactionInfo | Optional | Updates the transaction info in the payment sheet. |
newShippingOptionParameters |
ShippingOptionParameters | Optional | Updates the shipping options in the payment sheet. |
error |
PaymentDataError | Optional | Adds an error message to the payment sheet. |
Example
The following example shows you all of the payment data request updates that can be returned to Google Pay API.
{ "newTransactionInfo": { "displayItems": [ { "label": "Pixel 9 Peony 128GB (Unlocked)", "type": "LINE_ITEM", "price": "799.00" }, { "label": "Case-Mate Signature Clear Case for Pixel 9", "type": "LINE_ITEM", "price": "29.99" }, { "label": "Subtotal", "type": "SUBTOTAL", "price": "828.99" }, { "label": "Tax", "type": "TAX", "price": "8.29" } ], "currencyCode": "USD", "totalPriceStatus": "FINAL", "totalPrice": "837.28", "totalPriceLabel": "Total" }, "newShippingOptionParameters": { "defaultSelectedOptionId": "shipping-001", "shippingOptions": [ { "id": "shipping-001", "label": "Free: Standard shipping", "description": "Free Shipping delivered in 5 business days." } ] }, "newOfferInfo": { "offers": [ { "redemptionCode": "exampleCode", "description": "example description of offer" } ] }, "error": { "reason": "SHIPPING_ADDRESS_UNSERVICEABLE", "message": "Cannot ship to the selected address", "intent": "SHIPPING_ADDRESS" } }
MerchantInfo
This object provides information about the merchant that requests payment data.
| Property | Type | Necessity | Description |
|---|---|---|---|
merchantId |
string | Required | A Google merchant identifier issued after registration with the Google Pay & Wallet Console.
Required when PaymentsClient is initialized with an environment property
of PRODUCTION. See
Request production access for more information about the approval process and how to
obtain a Google merchant identifier. The merchantID can have 12-18 characters. |
merchantName |
string | Optional | Merchant name encoded as UTF-8. Merchant name is rendered in the payment sheet. In
TEST environment, or if a merchant isn't recognized, a
“Pay Unverified Merchant” message is displayed in the payment sheet. |
Example
The following example shows a merchantInfo object with merchantName.
"merchantInfo": { "merchantName": "Example Merchant" }
PaymentMethod
This object specifies one or more payment methods supported by the Google Pay API and accepted by your website.
| Property | Type | Necessity | Description |
|---|---|---|---|
type |
string | Required | A short identifier for the supported payment method.
Multiple payment methods of type |
parameters |
object | Required | Parameters required to configure the provided payment method type. For more information about expected values for the |
tokenizationSpecification |
PaymentMethodTokenizationSpecification | Optional | Configure an account or decryption provider to receive payment information. This property is required for the This property has no effect if it's included as part of an
|
The following example shows you how to support payment cards and Android device tokens from all supported card networks. This example shows tokenization through an example gateway.
{
"type": "CARD",
"parameters": {
"allowedAuthMethods": ["PAN_ONLY", "CRYPTOGRAM_3DS"],
"allowedCardNetworks": ["AMEX", "DISCOVER", "INTERAC", "JCB", "MASTERCARD", "VISA"]
},
"tokenizationSpecification": {
"type": "PAYMENT_GATEWAY",
"parameters": {
"gateway": "example",
"gatewayMerchantId": "exampleGatewayMerchantId"
}
}
}
TokenizationSpecification
This object allows you to configure an account to receive chargeable payment information.
| Property | Type | Necessity | Description |
|---|---|---|---|
type |
string | Required | A payment method tokenization type is supported for the given
|
parameters |
object | Required | Parameters specific to the selected payment method tokenization type. |
Gateway
To retrieve payment and customer information from
a payment gateway that's supported by the Google Pay API,
set type to PAYMENT_GATEWAY. Define the parameters
properties as described by your gateway. Typical properties include the gateway's identifier,
which is issued by Google, and your gateway account ID, which is provided by the gateway.
The following example shows how to retrieve information from a payment gateway:
"tokenizationSpecification": { "type": "PAYMENT_GATEWAY", "parameters": { "gateway": "example", "gatewayMerchantId": "exampleGatewayMerchantId" } }
Use the following table to find the specific "gateway": and
"gatewayMerchantId": values for your supported gateway.
| Gateway | Parameters and documents |
|---|---|
| 9Pay |
"gateway": "ninepay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| 91APP PAYMENTS |
"gateway": "payments91app" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| A-IT |
"gateway": "aitecomm" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| ABA PayWay |
"gateway": "ababank" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| accept.blue |
"gateway": "acceptblue" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| ACI |
"gateway": "aciworldwide" "gatewayMerchantId": "YOUR_ENTITY_ID" |
| ACpay |
"gateway": "acpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Acquired.com |
"gateway": "acquired" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Adyen |
"gateway": "adyen" "gatewayMerchantId": "YOUR_MERCHANT_ACCOUNT_NAME" |
| African Payment Solution (PTY) Ltd t/a LekkaPay |
"gateway": "lekkapay" "gatewayMerchantId": "YOUR_MERCHANT_ACCOUNT_NAME" |
| AI Fintech |
"gateway": "aifintech" "gatewayMerchantId": "YOUR_MERCHANT_ACCOUNT_NAME" |
| Airba Pay |
"gateway": "airbapay"" "gatewayMerchantId": "YOUR_MERCHANT_ACCOUNT_NAME" |
| Airvend |
"gateway": "airvend" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Airwallex |
"gateway": "airwallex" "gatewayMerchantId": "YOUR_MERCHANT_ACCOUNT_NAME" |
| Akua |
"gateway": "akua" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Akurateco |
"gateway": "akuratecolab" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Alfa-Bank |
"gateway": "alfabank" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Algoritma |
"gateway": "algoritma" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Allinpay |
"gateway": "allinpayintl" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| AllPayments |
"gateway": "allpayments" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| alticepay |
"gateway": "alticepay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| AMO FINTECH LLC |
"gateway": "amofintech" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Amwal Pay |
"gateway": "amwalalraqamia" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" No developer docs available |
| Anedot |
"gateway": "anedot" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| ApcoPay |
"gateway": "apcopay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| APPEX |
"gateway": "epos" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Armenian Card OJSC |
"gateway": "epgarca" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| AsiaBill |
"gateway": "asiabill" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" No developer docs available |
| Assist |
"gateway": "assist" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Assist Belarus |
"gateway": "belassist" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Assist Kazakhstan |
"gateway": "assistkz" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Aurus |
"gateway": "auruspay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Authorize.net |
"gateway": "authorizenet" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Axerve |
"gateway": "gestpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| AXS |
"gateway": "axsasia" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" No developer docs available |
| azericardgpay |
"gateway": "azericardgpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| B2B Soft Pay |
"gateway": "b2bsoftpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bancstac |
"gateway": "bancstac" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bank 131 |
"gateway": "bank131" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bank Muscat |
"gateway": "bankmuscat" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| BANK RBK |
"gateway": "bankrbkkzpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bank Vostok |
"gateway": "bankvostok" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Barclaycard |
"gateway": "barclayssmartpayadvance" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Barion |
"gateway": "barion" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Basis Theory |
"gateway": "basistheory" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| BCC.KZ |
"gateway": "bccpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| bePaid |
"gateway": "ecomcharge" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bereke Bank |
"gateway": "berekepay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Better Payment Germany GmbH |
"gateway": "betterpayment" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Billing Systems |
"gateway": "billingsystems" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bindo Labs Limited |
"gateway": "bindo" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| bisys.kz |
"gateway": "bisysgpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bizon.one |
"gateway": "bizonone" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bizzon |
"gateway": "bizzon" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Blackstone Merchant Services |
"gateway": "blackstone" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Blocks |
"gateway": "blocks" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bluefin |
"gateway": "bluefin" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bluefin Europe |
"gateway": "bluefineurope" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Blue Media |
"gateway": "bluemedia" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| BlueSnap |
"gateway": "bluesnap" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Blusky Technology Services |
"gateway": "bluskysvcpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| BORICA |
"gateway": "borica" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| BPC |
"gateway": "bpcpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| BR-DGE |
"gateway": "comcarde" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Braintree |
"gateway": "braintree" "braintree:apiVersion": "v1" "braintree:sdkVersion": "braintree.client.VERSION" "braintree:merchantId": "YOUR_BRAINTREE_MERCHANT_ID" "braintree:clientKey": "YOUR_BRAINTREE_TOKENIZATION_KEY" |
| Braspag |
"gateway": "cielo" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| BridgerPay |
"gateway": "bridgerpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Bonum |
"gateway": "bonumpsp" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| BT Pay |
"gateway": "btpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Buckaroo |
"gateway": "buckaroo" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Buya |
"gateway": "buya" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Callpay |
"gateway": "callpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CARDAQ |
"gateway": "cardaq" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CardCom |
"gateway": "cardcom" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CardConnect |
"gateway": "cardconnect" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Cardknox |
"gateway": "cardknox" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| cardlink |
"gateway": "cardlink" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Cardstream |
"gateway": "crst" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Cashflows |
"gateway": "cashflowsgateway" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Cathay United Bank |
"gateway": "cathaybk" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CCAvenue UAE |
"gateway": "ccavenueuae" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CCV |
"gateway": "ccv" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Cecabank |
"gateway": "cecabank" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Celerispay |
"gateway": "celerispay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CentralPay |
"gateway": "centralpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Centrobill LTD |
"gateway": "centrobill" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Chargehive |
"gateway": "chargehive" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CharityEngine |
"gateway": "charityengine" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Chase Merchant Services |
"gateway": "chase" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Checkout.com |
"gateway": "checkoutltd" "gatewayMerchantId": "YOUR_PUBLIC_KEY" |
| CIBPAY MMC |
"gateway": "cibpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| City Bank PLC |
"gateway": "citybank" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CityPay |
"gateway": "citypay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Cloud9 Payment Gateway (C9PG) |
"gateway": "c9pg" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CloudPayments |
"gateway": "cloudpayments" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CloudWalk |
"gateway": "cloudwalk" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Coinflow |
"gateway": "coinflow" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Comax (Native Data LTD) |
"gateway": "comaxpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Computop |
"gateway": "computop" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| ConcordPay |
"gateway": "concordpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Conekta |
"gateway": "conektagpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Connectum |
"gateway": "connectum" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| ConnexPay |
"gateway": "connexpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CoralPay |
"gateway": "coralpay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Corefy |
"gateway": "paycoreio" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Coriunder Limited |
"gateway": "coriunder" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" No developer docs available |
| Corvus Pay |
"gateway": "corvuspay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Credit2000 |
"gateway": "credit2000" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| Credorax |
"gateway": "credorax" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |
| CrossPay |
"gateway": "crosspay" "gatewayMerchantId": "YOUR_GATEWAY_MERCHANT_ID" |