# Google Pay on Web Accept Google Pay on your website using Finix. This guide details how to get started accepting Google Pay on web using Finix. Dues and Assessments We recommend that you pass the address field listed in the steps below. If the address is not passed, you will be charged additional dues and assessments per transaction from the card network. ## Google Pay Demo You can see a demo of Google Pay on our [sample store](https://finixsamplestore.com). All of the code on our sample store is available on Github [here](https://github.com/finix-payments/accept-a-payment). In this sample store, you can add a few items to your card and click on **Checkout with Tokenization Form**. ![Google Pay](/assets/finix-sample-store-tokenization-form.3b95552a4ff811792f75708a1e3afc6cb1995b096f6f547f40133e30b134533f.08ff7529.png) You'll see an express checkout button that will bring up the google pay modal. ![Google Pay](/assets/google-pay-finix-sample-store.e1bbbbdb8113b379f12ff4fcd1c5350774eb020b623823aa2a883203c2193fba.08ff7529.png) Our sample store uses sandbox credentials so you won't get charged. ![Google Pay Modal](/assets/google-pay-finix-sample-store-pay-modal.1422cc917be2b682bd2d2e18b56b607b3783897bf49c14070bc367c67c7dfd02.08ff7529.png) ## Integration Steps ### Step 1: Onboard with Google Start by familiarizing yourself with [the prerequisites](/guides/online-payments/digital-wallets/google-pay) for using Google Pay with Finix. ### Step 2: Add the Google Pay Library First, load the Google Pay API JavaScript library into your app. You can add the Google Pay library by following these steps: 1. Include the JavaScript script below in your website to add Google Pay's JavaScript Library so your website can make calls to Google Pay’s API. ```javascript Google Pay JS Script ``` 1. Once you've added the code and the library loads, create a `PaymentsClient` object. 1. For a sandbox environment, use `environment: "TEST"`. This returns test payment methods that can be used for sandbox transactions. 2. For a live environment, use `environment: "LIVE"`. ```javascript Google Pay PaymentsClient Object const paymentsClient = new google.payments.api.PaymentsClient({ environment: "TEST", }); ``` ### Step 3: Define Google Pay API Version After you've added the Google Pay API JavaScript library, declare the version of the Google Pay API that your site uses. The major and minor versions are required in the fields of each passed object and are included in the response. The following code sample shows the declared API versions. ```javascript Google Pay API Version const baseRequest = { apiVersion: 2, apiVersionMinor: 0, }; ``` ### Step 4: Request a Finix Payment Token Now that you've defined your Google Pay API Version, request a Finix payment token. - `gateway` should be set to `finix` - `gatewayMerchantId` should be set to the **application owner identity** or **merchant owner identity**. To choose the appropriate Identity ID, see [Choose Merchant Identifier Value](https://docs.finix.com/guides/online-payments/digital-wallets/google-pay). ```javascript Google Pay Tokenization Specification const tokenizationSpecification = { type: "PAYMENT_GATEWAY", parameters: { gateway: "finix", gatewayMerchantId: "IDxxx", }, }; ``` ### Step 5: Define Allowed Card Networks Now that we've requested a Finix payment token, you can set which card networks will be accepted on your site by: - Defining `allowedCardNetworks`. - Defining `allowedCardAuthMethods` which sets the authentication methods supported by your site and gateway. ```javascript Google Pay Allowed Card Networks const allowedCardNetworks = [ "AMEX", "DISCOVER", "INTERAC", "JCB", "MASTERCARD", "VISA", ]; const allowedCardAuthMethods = ["PAN_ONLY", "CRYPTOGRAM_3DS"]; ``` For both `PAN_ONLY` and `CRYPTOGRAM_3DS` authorization methods, support for 3D Secure is dictated by the processors you integrate with in `allowedCardNetworks`. Finix accepts both `PAN_ONLY` and `CRYPTOGRAM_3DS` authorization methods. ### Step 6: Describe Allowed Payment Methods After you've defined the supported payment card networks, you need to describe your allowed payment methods. You can do this with the following steps: 1. Combine `allowedAuthMethods` and `allowedCardNetworks` to describe how your site supports the `CARD` payment method. 2. Extend the `baseCardPaymentMethod` object and describe the information you expect to be returned to your application. Include a description of the tokenized payment data. ```javascript Google Pay Payment Methods const baseCardPaymentMethod = { type: "CARD", parameters: { allowedAuthMethods: allowedCardAuthMethods, allowedCardNetworks: allowedCardNetworks, }, }; const cardPaymentMethod = Object.assign( { tokenizationSpecification: tokenizationSpecification }, baseCardPaymentMethod ); ``` ### Step 7: Check Readiness to Pay with Google Pay Now that you've described your allowed payment methods, you need to check readiness to pay with the Google Pay API. To check readiness to pay with Google Pay's API: 1. Add `allowedPaymentMethods` to the `baseRequest` object. 2. Call `isReadyToPay()` to see if Google Pay's API is supported by the current device and browser for the payment methods specified. ```javascript Google Pay Readiness Check const isReadyToPayRequest = Object.assign({}, baseRequest); isReadyToPayRequest.allowedPaymentMethods = [baseCardPaymentMethod]; paymentsClient .isReadyToPay(isReadyToPayRequest) .then(function (response) { if (response.result) { // add a Google Pay payment button } }) .catch(function (err) { // show error in developer console for debugging console.error(err); }); ``` ### Step 8: Add the Google Pay Button Now that you've checked readiness to pay with Google Pay API, you can add a Google Pay payment button to your website. - For information about the different button types and display requirements, see [Google's Brand guidelines](https://developers.google.com/pay/api/web/guides/brand-guidelines). - To try all the different Google Pay buttons, see [Google Pay's interactive demo](https://developers.google.com/pay/api/web/guides/resources/customize). JavaScript ```javascript Google Pay Button – JS Example const button = paymentsClient.createButton({ onClick: () => console.log("TODO: click handler"), allowedPaymentMethods: [], }); // make sure to provide an allowed payment method document.getElementById("container").appendChild(button); ``` HTML ```html Google Pay Button – HTML Example ``` #### CSS Properties | Field | Type | Description | | --- | --- | --- | | `button-color` | String, optional | Color of the button. Available values are **default**, **black**, and **white** | | `button-type` | String, optional | Available values are **black**, **white**, and **white-outline** | | `button-locale` | String, required | Set the language of the button. There's a variety of buttons that you can use on your website to begin the transaction. This includes: book, buy, checkout, donate, order, pay, plain, and subscribe. | ### Step 9: Create a Payment Data Request After creating a Google Pay payment button, you need to create a `PaymentDataRequest` object. Follow these steps: 1. Build a JavaScript object that describes your site's support for the Google Pay API. See the `PaymentDataRequest` object for a list of supported properties. ```javascript paymentDataRequest const paymentDataRequest = Object.assign({}, baseRequest); paymentDataRequest.allowedPaymentMethods = [cardPaymentMethod]; paymentDataRequest.transactionInfo = { countryCode: 'US', currencyCode: 'USD', totalPrice: '123.45', totalPriceStatus: 'FINAL' }; paymentDataRequest.merchantInfo = { merchantId: '12345678901234567890' merchantName: 'Example Merchant' }; ``` #### `transactionInfo` Request Arguments | Field | Type | Description | | --- | --- | --- | | `countryCode` | *string*, **required** | The ISO country code. | | `currencyCode` | *string*, **required** | The currency code of the locale. | | `totalPrice` | *string*, **required** | Total value of the transaction with an optional decimal precision of two decimal places. | | `totalPriceStatus` | *string*, **required** | The status of the total price used. Pass **FINAL** if the total price doesn't change from the amount presented to the buyer.Pass **ESTIMATED** if the total price might adjust based on the details of the response, such as sales tax collected that's based on a billing address.Pass **NOT_CURRENTLY_KNOWN** when using `totalPriceStatus` for a capability check. | #### `merchantInfo` Request Arguments | Field | Type | Description | | --- | --- | --- | | `merchantID` | *string*, **required** | A Google merchant identifier issued after registration with the Google Pay Business Console. Required when PaymentsClient is initialized with an environment property of **LIVE** | | `merchantName` | *string*, **required** | Pass in the name of the `Merchant` . | 1. Add the payment methods supported by your site and any configurations of additional data that are expected in the response. 2. Set a `totalPrice` and `currencyCode` for the buyer to authorize. 3. Provide a user-visible `merchantName`. - Use the `TEST` `Merchant` ID if you're in a sandbox environment. Strong Customer Authentication (SCA) Merchants that process transactions in the European Economic Area (EEA) or any other countries that are subject to Strong Customer Authentication (SCA) must include the `countryCode`, `totalPrice`, and `merchantName` parameters to meet SCA requirements. ### Step 10: Get Buyer Identity A buyer identity is required before you can proceed with the next steps. You can either create a new buyer identity through the Finix API, or use an existing one you’ve already created. Buyer Identity Data All buyer Identity fields are optional. However, Finix recommends including basic information (name, email, address, and phone) to make payment operations easier. details summary Use an existing buyer 1. Log in to your [Finix Dashboard](https://finix.payments-dashboard.com/Login). 2. In the left sidebar, select **Data Resources** → **Identities**. 3. Search for the buyer identity you want to use. - Confirm the Role is **Buyer**. - Option to use filters to quickly narrow down results. 4. Copy the Buyer Identity (e.g. `IDjWktr7BPDGhz4amrPJZoXg` ) details summary Create a new buyer ```shell Buyer Identity Request curl -i -X POST \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda \ https://finix.sandbox-payments-api.com/identities \ -H 'Content-Type: application/json' \ -H 'Finix-Version: 2022-02-01' \ -d '{ "entity": { "phone": "7145677613", "first_name": "John", "last_name": "Smith", "email": "finix_example@finix.com", "personal_address": { "city": "San Mateo", "country": "USA", "region": "CA", "line2": "Apartment 7", "line1": "741 Douglass St", "postal_code": "94114" } }, "identity_roles": [ "BUYER" ], "tags": { "key": "value" }, "type": "PERSONAL" }' ``` ```json Buyer Identity Response { "id": "IDmkDvJfxZWMEK56FDFtbozo", "created_at": "2024-08-09T09:34:36.87Z", "updated_at": "2024-08-09T09:34:36.87Z", "application": "APgPDQrLD52TYvqazjHJJchM", "entity": { "ach_max_transaction_amount": 0, "amex_mid": null, "annual_card_volume": 0, "business_address": null, "business_name": null, "business_phone": null, "business_tax_id_provided": false, "business_type": null, "default_statement_descriptor": null, "discover_mid": null, "dob": null, "doing_business_as": null, "email": "finix_example@finix.com", "first_name": "John", "has_accepted_credit_cards_previously": false, "incorporation_date": null, "last_name": "Smith", "max_transaction_amount": 0, "mcc": null, "ownership_type": null, "personal_address": { "line1": "741 Douglass St", "line2": "Apartment 7", "city": "San Mateo", "region": "CA", "postal_code": "94114", "country": "USA" }, "phone": "7145677613", "principal_percentage_ownership": null, "short_business_name": null, "tax_authority": null, "tax_id_provided": false, "title": null, "url": null }, "identity_roles": [], "tags": { "key": "value" }, "type": "PERSONAL", "_links": { "self": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo" }, "verifications": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo/verifications" }, "merchants": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo/merchants" }, "settlements": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo/settlements" }, "authorizations": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo/authorizations" }, "transfers": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo/transfers" }, "payment_instruments": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo/payment_instruments" }, "associated_identities": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo/associated_identities" }, "disputes": { "href": "https://finix.sandbox-payments-api.com/identities/IDmkDvJfxZWMEK56FDFtbozo/disputes" }, "application": { "href": "https://finix.sandbox-payments-api.com/applications/APgPDQrLD52TYvqazjHJJchM" } } } ``` ### Step 11: Create a Payment Instrument After calling `loadPaymentData` using the Google Pay payments client object, a token will be returned in that response. ```javascript paymentsClient paymentToken paymentsClient .loadPaymentData(paymentDataRequest) .then(function (paymentData) { // if using gateway tokenization, pass this token without modification paymentToken = paymentData.paymentMethodData.tokenizationData.token; // for billing details name = paymentData.paymentMethodData.info.billingAddress.name; address = { postal_code: paymentData.paymentMethodData.info.billingAddress.postalCode, country: paymentData.paymentMethodData.info.billingAddress.countryCode, }; }) .catch(function (err) { // show error in developer console for debugging console.error(err); }); ``` You need to pass in the `third_party_token`, `address`, and `name` when creating a [`Payment Instrument`](/api/payment-instruments/createpaymentinstrument). Example API Definition Example Payment Instrument - Google Pay { "id": "PIwpqpJZCharsZAt6WKVopPS", "created_at": "2025-05-08T18:44:58.56Z", "updated_at": "2025-05-08T18:44:58.56Z", "application": "APc9vhYcPsRuTSpKD9KpMtPe", "created_via": "API", "currency": "USD", "disabled_code": null, "disabled_message": null, "enabled": true, "fingerprint": "FPR88YBDbK4TqYMUNU8t8fbeQ", "identity": "IDmj1yA97RS4rMjiQgvK3Vio", "instrument_type": "APPLE_PAY", "address": { "line1": "900 Metro Center Blv", "line2": "APT 200", "city": "San Francisco", "region": "CA", "postal_code": "94404", "country": "USA" }, "bin": "370382", "brand": "AMERICAN_EXPRESS", "card_type": "CREDIT", "expiration_month": 11, "expiration_year": 2024, "issuer_country": "USA", "last_four": "8576", "name": "John Smith", "tags": {}, "third_party": null, "third_party_token": null, "type": "GOOGLE_PAY", "_links": { "self": { "href": "https://finix.sandbox-payments-api.com/payment_instruments/PIwpqpJZCharsZAt6WKVopPS" }, "authorizations": { "href": "https://finix.sandbox-payments-api.com/payment_instruments/PIwpqpJZCharsZAt6WKVopPS/authorizations" }, "transfers": { "href": "https://finix.sandbox-payments-api.com/payment_instruments/PIwpqpJZCharsZAt6WKVopPS/transfers" }, "verifications": { "href": "https://finix.sandbox-payments-api.com/payment_instruments/PIwpqpJZCharsZAt6WKVopPS/verifications" }, "application": { "href": "https://finix.sandbox-payments-api.com/applications/APc9vhYcPsRuTSpKD9KpMtPe" }, "identity": { "href": "https://finix.sandbox-payments-api.com/identities/IDmj1yA97RS4rMjiQgvK3Vio" } } } API Definition For security purposes, [Google Pay tokens](https://support.google.com/pay/merchants/answer/6345242?hl=en#) are only active for a short period of time. Due to this limited lifetime, the `third_party_token` used in the request above has expired. To test the request, use your `third_party_token` and Finix credentials. ### Step 12: Create a Payment Similar to other Finix transactions, after the `Payment Instrument` is created, you can use the instrument and create a [`transfer`](/api/transfers) or an [`authorization`](/api/authorizations/createauthorization) to process transactions. #### Sale - Set the `source` to your Buyer's Payment Instrument ID - Set the `merchant` to an `APPROVED` Merchant account - Set the `amount` in cents ```shell Example Transfer Request curl https://finix.sandbox-payments-api.com/transfers \ -H "Content-Type: application/json" \ -H 'Finix-Version: 2022-02-01' \ -u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e \ -d '{ "merchant": "MUeDVrf2ahuKc9Eg5TeZugvs", "currency": "USD", "amount": 662154, "source": "PIf8dyFFcEGBqPhaG22hPyYs", }' ``` ```json Example Transfer Response { "id": "TR29av3LN1TAGPbXscsup1tt", "amount": 662154, "tags": {}, "state": "SUCCEEDED", "trace_id": "34f40e87-2599-414b-874b-f472790ff521", "currency": "USD", "application": "APgPDQrLD52TYvqazjHJJchM", "source": "PImE5ZhGZJNFy14DtX8wX6f6", "destination": null, "ready_to_settle_at": null, "externally_funded": "UNKNOWN", "fee": 0, "statement_descriptor": "FNX*FINIX FLOWERS", "type": "DEBIT", "messages": [], "raw": null, "created_at": "2022-08-25T20:39:37.59Z", "updated_at": "2022-08-25T20:39:38.17Z", "idempotency_id": null, "merchant": "MUeDVrf2ahuKc9Eg5TeZugvs", "merchant_identity": "IDpYDM7J9n57q849o9E9yNrG", "subtype": "API", "failure_code": null, "failure_message": null, "additional_buyer_charges": null, "_links": { "application": { "href": "https://finix.sandbox-payments-api.com/applications/APgPDQrLD52TYvqazjHJJchM" }, "self": { "href": "https://finix.sandbox-payments-api.com/transfers/TR29av3LN1TAGPbXscsup1tt" }, "merchant_identity": { "href": "https://finix.sandbox-payments-api.com/identities/IDuqZpDw28f2KK6YuDk4jNLg" }, "payment_instruments": { "href": "https://finix.sandbox-payments-api.com/transfers/TR29av3LN1TAGPbXscsup1tt/payment_instruments" }, "reversals": { "href": "https://finix.sandbox-payments-api.com/transfers/TR29av3LN1TAGPbXscsup1tt/reversals" }, "fees": { "href": "https://finix.sandbox-payments-api.com/transfers/TR29av3LN1TAGPbXscsup1tt/fees" }, "disputes": { "href": "https://finix.sandbox-payments-api.com/transfers/TR29av3LN1TAGPbXscsup1tt/disputes" }, "source": { "href": "https://finix.sandbox-payments-api.com/payment_instruments/PIe2YvpcjvoVJ6PzoRPBK137" }, "fee_profile": { "href": "https://finix.sandbox-payments-api.com/fee_profiles/FPvCQUcnsueN3Bc3zR1qCBG8" } } } ``` #### Authorization You can create an Authorization and capture it later using two separate API calls. This approach is useful if you need to first verify the payment details and then capture a specific amount at a later time. For more details, see [Creating and Capturing an Authorization](/guides/online-payments/payment-features/auth-and-captures).