Adyen · Schema

GooglePayInfo

PaymentsFinancial ServicesFintech

Properties

Name Type Description
merchantId string Google Pay [Merchant ID](https://support.google.com/paymentscenter/answer/7163092?hl=en). Character length and limitations: 16 alphanumeric characters or 20 numeric characters.
reuseMerchantId boolean Indicates whether the Google Pay Merchant ID is used for several merchant accounts. Default value: **false**.
View JSON Schema on GitHub

JSON Schema

adyen-googlepayinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GooglePayInfo",
  "title": "GooglePayInfo",
  "properties": {
    "merchantId": {
      "description": "Google Pay [Merchant ID](https://support.google.com/paymentscenter/answer/7163092?hl=en). Character length and limitations: 16 alphanumeric characters or 20 numeric characters.",
      "maxLength": 20,
      "minLength": 16,
      "type": "string"
    },
    "reuseMerchantId": {
      "description": "Indicates whether the Google Pay Merchant ID is used for several merchant accounts. Default value: **false**.",
      "type": "boolean"
    }
  },
  "required": [
    "merchantId"
  ],
  "type": "object"
}