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"
}

Last updated