AlliancePay
🇬🇧 English
🇬🇧 English
  • E Commerce platform AlliancePay v2.32.0
  • Authentication
  • Data Encryption
  • Authorization
  • Using an authorization token
  • Key Management Overview
    • PURCHASE Collection Example
    • A2C Collection Example
  • Payment methods H2H
    • PURCHASE
      • PURCHASE Request - Step 1
      • PURCHASE Request - Step 2
    • A2C
    • C2A
      • C2A Transaction Request - Step 1
      • C2A Transaction Request - Step 2
    • ApplePay decrypted
      • PURCHASE
        • Payment Processing Request - Step 1
        • Payment Processing Request - Step 2 (3DS)
      • C2A
        • C2A request Step 1
        • C2A request Step 2 (3DS)
    • ApplePay encrypted
      • Request aPay support on the page
      • Request to receive aPay merchant data
      • Merchant validation request
      • Session Establishment Request in aPay
      • Payment Processing Request
    • GooglePay™ decrypted
      • PURCHASE
        • Payment Processing Request - Step 1
        • Payment Processing Request - Step 2 (3DS)
      • C2A
        • C2A request Step 1
        • C2A request Step 2 (3DS)
    • GooglePay™ encrypted
      • Google Pay™ Documentation
      • Google Pay™ Support Request on the Page
      • Google Pay™ Merchant Data Retrieval Request
      • Payment request
    • REFUND
    • TOKEN
      • PURCHASE
        • Token payment request Step 1
        • 3DS token payment request Step 2
      • C2A
        • Token payment request Step 1
        • 3DS token payment request Step 2
      • Token Creation
      • Retrieve Token by CustomerId
      • Retrieve Token Data
      • Update Token Status
      • Token Statuses
    • Account Verification
      • Card Verification Request Step 1
      • Card verification request Step 2
    • Getting data
      • By OPERATION_ID
      • By merchantRequestId
    • Getting a balance
    • Callback
  • Payment methods HPP
    • PURCHASE
      • Creating an order
      • Receiving order data
    • REFUND
    • Callback
    • Order statuses
  • Dictionary
    • Transaction status
    • Test cases
    • Error codes
    • Value actionCode, responseCode
    • Limits
    • Instructions for reconciliation by registers
      • Fields Description in Registers
    • Whitelist IP addresses and URLs
  • History of changes
Powered by GitBook
On this page
  • Response Parameters:
  • Request Example
  • Response Example
  1. Payment methods H2H
  2. GooglePay™ encrypted

Google Pay™ Merchant Data Retrieval Request

{{url}}/ecom/execute_request/payments/v1/googplepay/merchant/get

This request allows a merchant to retrieve their Google Pay™ configuration and data. This request is optional, as Google Pay™ data can be hard-coded on the merchant's side.

Response Parameters:

id

Merchant identifier in the Google Pay™ system

string

"1234567890"

gPayMerchantName

Merchant's name

string

Example Merchant

gatewayIds

List of gateway IDs associated with the merchant

list

countryCode

Country code value

string

UA

allowedAuthMethods

Supported fields for card transaction authentication.

  • PAN_ONLY: This authentication method is associated with payment cards stored in the user's Google Account. The returned payment data contains the Personal Account Number (PAN) along with the expiration month and expiration year.

  • CRYPTOGRAM_3DS: This authentication method is associated with cards stored as tokens on the Android device. The returned payment data contains a 3-D Secure (3DS) cryptogram generated on the device.

string

["PAN_ONLY", "CRYPTOGRAM_3DS"]

allowedCardNetworks

Supported card networks for Google Pay™ API

  • MASTERCARD

  • VISA

string

["MASTERCARD", "VISA"]

enabled

Indicates whether the merchant is active (true) or inactive (false)

string

true/false

Request Example

{  }

Response Example

{
    "id": "paujUKks5E7jFHdsGLgShAIZ",
    "gPayMerchantName": "gPayMerchantName00",
    "gatewayIds": [
        "9ACW_gv4dRs6yLIzdW_WZUNw"
    ],
    "allowedCardNetworks": [
        "MASTERCARD",
        "VISA"
    ],
    "allowedAuthMethods": [
        "PAN_ONLY",
        "CRYPTOGRAM_3DS"
    ],
    "enabled": true,
    "countryCode": "UA"
}
PreviousGoogle Pay™ Support Request on the PageNextPayment request

Last updated 2 months ago