Google Pay for Payment Pages

  Last updated: 

Google Pay logo

 

Google Pay™ is a digital wallet platform and online payment system developed by Google to power in-app, online, and in-person contactless purchases on mobile devices, enabling users to make payments with Android phones, tablets, or watches.

 

Features

  • Protect Plus is supported, but checks cannot be run over the card details, as these are not made available to Trust Payments for Google Pay transactions.
  • Payments may be subject to chargebacks, depending on your acquiring bank.

  The security code setting on your security policy is not applicable for Google Pay transactions, and therefore, they cannot be suspended based on the security code. However, AVS checks are still performed, and transactions can still be suspended due to your security policy configuration.

  All merchants must adhere to the Google Pay APIs   Acceptable Use Policy (link to external site) and accept the terms defined in the   Google Pay API Terms of Service (link to external site)

  Your acquiring bank must support Google Pay with Trust Payments. Contact our Support Team for further information.

 

How it works

  1. The customer selects the Google Pay button displayed on your checkout. If they are not already signed into their Google Pay account, the customer is prompted to sign in.

    Choice page: Trust Payments logo at the top, then Amount, Merchant name, Google Pay button and other payment types.

  2. A pop-up is displayed, in which the customer is displayed the final transaction amount and asked to choose their preferred payment method.

    Google Pay pop-up showing the G Pay logo, currently signed-in user, selected card, total price and a "PAY" button.

  3. The customer selects "Pay" to confirm their intent to purchase, before being redirected back to the Trust Payments hosted response page. (You can optionally enable a redirect that takes the customer back to your own website)

    Response page with Trust Payments logo, success message, Transaction ref, Auth code, last 4 digits of PAN, Amount, card type.

 

Configuration

Enabling Google Pay

To enable Google Pay on your test site reference, please contact our Support Team. Once enabled, the Google Pay button will be displayed on the payment choice and payment details pages (providing the browser supports the service) and you can test your solution.

 

Set up your Google account for testing

To begin testing Google Pay when targeting a test environment, you will need a Google account and you will need to join a group Google provides that allows you to use a set of API test cards for testing your Google Pay solution.

  1. Once you have registered a Google account, sign in to the account in your browser, navigate to the following page:
      https://groups.google.com/g/googlepay-test-mode-stub-data (link to external site)
  2. Then select "Join group".

    Google admin screen with message "You don't have permission to access this content". "Join Group" link is circled at the top.


  3. Once you have set your preferences, select "Join group".

    Join group form: User can change their name, link their Google Account, sign up for updates. A "Join group" link is circled.


  4. You will be presented with a page that confirms you have been granted access to the Google test suite:

    Google admin screen with message "Congratulations! You now have access to our test suite! No further action is required."


  5. To ensure this is working, Google provide a demo page where you can click a Google Pay button to view the payment form.
        View Google's demo page (link to external site).

    If everything is working as expected, you should be able to select any of the example payment methods and select "CONTINUE". This will process a test payment.

    Google Pay pop-up showing the currently sign-in user and list of cards to choose for payment. A "CONTINUE" button is circled.

 

Modify your POST to Trust Payments

You can optionally modify your POST submitted to Trust Payments to determine the billing and delivery address to be used for the payment authorisation. By submitting the following fields with value 1, this will ensure that the billing and delivery information are retrieved from the customer’s wallet. This expedites the payment process, providing a more seamless checkout experience for the customer.

  Field name Format Description
  Optional billingcontactdetailsoverride Numeric (1)
  • "0" – Uses billing details submitted in the POST.
  • "1" – Uses billing details from the customer’s wallet.
  Optional customercontactdetailsoverride Numeric (1)
  • "0" – Uses delivery details submitted in the POST.
  • "1" – Uses delivery details from the customer’s wallet.
<form method="POST" action="<DOMAIN>/process/payments/choice">
...
<input type="hidden" name="billingcontactdetailsoverride" value="1">
<input type="hidden" name="customercontactdetailsoverride" value="1">
...
<input type="submit" value="Pay">
</form>

Replace <DOMAIN> with a supported domain. View full domain list.

Was this article helpful?
0 out of 0 found this helpful