Add Google Pay to your checkout

Google transactions are credit card transactions in which card information is tokenised and encrypted by Google Payment Tokens

Google Pay allows customers to make secure payments with any stored credit or debit card in their Google App.

  1. Get the gatewayMerchantID from CardCorp.
    Tell your Account Manager that you want to activate Google Pay and acquire your gatewayMerchantID
  2. Add Google Pay as your Payment Brand in your Integration Script. This will depend on what integration option you use.
    1. For COPY AND PAY.
      Configure the Google Pay object in the wpwlOptions in generating the Payment Form.
      var wpwlOptions = {
          googlePay: {
              gatewayMerchantId: ""
              merchantId: ""
          }
      }
    2. For Server-to-Server, there are two APIs for Google Pay:
      1. Google Pay with the encrypted payment token.
        You can send the encrypted payment token as is. Our gateway will handle the decryption and process the transaction. Send the following parameters together with other parameters in a server-to-server call:
        paymentBrand=GOOGLEPAY
        googlePay.paymentToken={ ... }
        Replace googlePay.paymentToken with the JSON (payment token) received from the Google Pay API.
      2. Google Pay with decrypted card information.
        You can do the decryption yourself and send the decrypted card information with the usual card API: card.number, card.expiryMonth, card.expiryYear, threeDSecure.verificationId, threeDSecure.eci, and googlePay.source (Possible values: web or app). For example
        paymentBrand=GOOGLEPAY
        card.number=4200000000000000
        card.expiryMonth=05
        card.expiryYear=2022
        threeDSecure.verificationId=ABiKYvXjhcB7AAc+K04XAoABFA==
        threeDSecure.eci=07
        googlePay.source=web

And that's it - you're done!

Questions?
Visit our website and talk to the CardCorp customer service team for assistance.