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.
- Get the gatewayMerchantID from CardCorp.
Tell your Account Manager that you want to activate Google Pay and acquire your gatewayMerchantID - Add Google Pay as your Payment Brand in your Integration Script. This will depend on what integration option you use.
- For COPY AND PAY.
Configure the Google Pay object in thewpwlOptions
in generating the Payment Form.var wpwlOptions = { googlePay: { gatewayMerchantId: "" merchantId: "" } }
- For Server-to-Server, there are two APIs for Google Pay:
- 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:
ReplacepaymentBrand=GOOGLEPAY googlePay.paymentToken={ ... }
googlePay.paymentToken
with the JSON (payment token) received from the Google Pay API. - 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
, andgooglePay.source
(Possible values:web
orapp
). For examplepaymentBrand=GOOGLEPAY card.number=4200000000000000 card.expiryMonth=05 card.expiryYear=2022 threeDSecure.verificationId=ABiKYvXjhcB7AAc+K04XAoABFA== threeDSecure.eci=07 googlePay.source=web
- Google Pay with the encrypted payment token.
- For COPY AND PAY.
And that's it - you're done!
Questions?
Visit our website and talk to the CardCorp customer service team for assistance.