Google Pay
By integrating Google Pay into your website or Android application, your customers can securely make one-touch payments using any credit or debit card connected to their Google account.
To enable Google Pay in the UAE or Saudi Arabia, please request activation from your customer success manager.
Overview
To start processing Google Pay payments, you must first integrate directly with Google. Once integration is complete, you can add the Google Pay button to your checkout page and start requesting your customers' encrypted payment information.
Google Pay integration and payments can be simplified into a three-step method:
There is no liability shift!
Unlike with some other wallets, payments made via Google Pay do not benefit from any liability shift. You will be subject to the same liability rules and chargeback policies as with regular credit and debit card payments, as described here. In order to minimize the risk of fraud and chargebacks, you may want to restrict the type of payment cards you accept. For more information, see this section of the Google Pay API documentation.
Step 1: Integrate with Google Pay
Please note:
Before going live, you are required to register with Google Pay and select Checkout.com as your payment processor. You will also need to whitelist your domain here. Note that you must be logged in as a Google Developer to do this. If not, you will be redirected to Google Pay's support page.
For information on integrating with Google Pay, first, refer to the Google Pay API guide.
When you submit a payment data request to the Google API, be sure to include the following parameters:
'gateway': 'checkoutltd'
'gatewayMerchantId': '<your public key>'
Examples
'allowedPaymentMethods': ['CARD','TOKENIZED_CARD'],
'paymentMethodTokenizationParameters': {
'tokenizationType': 'PAYMENT_GATEWAY',
'parameters': {
'gateway': 'checkoutltd'
'gatewayMerchantId': '<replace with your public key>'
}
}
private PaymentDataRequest createPaymentDataRequest() {
PaymentDataRequest.Builder request =
PaymentDataRequest.newBuilder()
.setTransactionInfo(
TransactionInfo.newBuilder()
.setTotalPriceStatus(WalletConstants.TOTAL_PRICE_STATUS_FINAL)
.setTotalPrice("10.00")
.setCurrencyCode("USD")
.build())
.addAllowedPaymentMethod(WalletConstants.PAYMENT_METHOD_CARD) .addAllowedPaymentMethod(WalletConstants.PAYMENT_METHOD_TOKENIZED_CARD)
.setCardRequirements(
CardRequirements.newBuilder()
.addAllowedCardNetworks(
Arrays.asList(
WalletConstants.CARD_NETWORK_VISA,
WalletConstants.CARD_NETWORK_MASTERCARD))
.build());
PaymentMethodTokenizationParameters params =
PaymentMethodTokenizationParameters.newBuilder()
.setPaymentMethodTokenizationType(
WalletConstants.PAYMENT_METHOD_TOKENIZATION_TYPE_PAYMENT_GATEWAY)
.addParameter("gateway", "checkoutltd")
.addParameter("gatewayMerchantId", "<replace with your public key>")
.build();
request.setPaymentMethodTokenizationParameters(params);
return request.build();
}
Please note:
You will need to specify which card types and card schemes to support in your payment data request. Checkout.com and Google Pay support the use of both Visa and Mastercard.
Step 2: Tokenize the Google Pay payment data
Once you have received the payment data from Google, you then need to call Checkout.com’s endpoint for tokenizing the encrypted payment data; you can find this payment data in the paymentMethodToken
property of the Google Pay payment data request's response.
To find out more about Google Pay payment requests, read the Google Pay object reference.
The request
Use the details below to set up your request.
Endpoints
Live
Sandbox
Header parameters
Header | Value |
---|---|
|
|
|
|
Body parameters
Field name | Description |
---|---|
type String required | The type of card details to be tokenized. Set this to |
| The Google Pay payment token. |
| Verifies the message came from Google. The signature is created using ECDSA. |
| Identifies which encryption/signing scheme this message has been created. In this way, the protocol can evolve over time if needed. If it is not set, assume ECv0. |
| A serialized JSON string containing the |
Request example
This following code snippet is an example of the request body for a Google Pay payment.
{
"type": "googlepay",
"token_data": {
"protocolVersion": "ECv1",
"signature": "TJVA95OrM7E2cBab30RMHrHDcEfxjoYZgeFONFh7HgQ",
"signedMessage": "{\"encryptedMessage\": \"ZW5jcnlwdGVkTWVzc2FnZQ==\", \"ephemeralPublicKey\": \"ZXBoZW1lcmFsUHVibGljS2V5\", \"tag\": \"c2lnbmF0dXJl\"}"
}
}
The response
Response example
{
"type": "googlepay",
"token": "tok_ubfj2q76miwundwlk72vxt2i7q",
"expires_on": "2018-10-22T15:44:03Z"
}
Step 3: Request a payment using Google Pay
Now you have the token, it's time to authorize the payment. Grab the token, and use it in the body of a card token payment request from your application or website's backend server.
Test Google Pay in sandbox
To start testing, you'll need to:
- create a test account, and
- contact your customer success manager or integrations engineer to activate Google Pay payments in the sandbox environment.
Google Pay does not allow the configuration of test cards within its online wallet. However, when using Google's test environment, if a real card is selected when making the online purchase, Google Pay provides a test card in the encrypted payment data; ensuring that no actual transaction takes place.
Find out more about testing and simulating payments.
Can we help?
Thanks for using Checkout.com. If you need any help or support, then message our support team at [email protected].
Updated 5 months ago