Adyen · JSON Structure

Transfer Webhooks Merchant Data Structure

MerchantData schema from Adyen API

Type: object Properties: 5
PaymentsFinancial ServicesFintech

MerchantData is a JSON Structure definition published by Adyen, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

acquirerId mcc merchantId nameLocation postalCode

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/transfer-webhooks-merchant-data-structure.json",
  "description": "MerchantData schema from Adyen API",
  "type": "object",
  "properties": {
    "acquirerId": {
      "description": "The unique identifier of the merchant's acquirer.",
      "type": "string"
    },
    "mcc": {
      "description": "The merchant category code.",
      "type": "string"
    },
    "merchantId": {
      "description": "The merchant identifier.",
      "type": "string"
    },
    "nameLocation": {
      "description": "Contains the merchant's name and location.",
      "$ref": "#/components/schemas/NameLocation"
    },
    "postalCode": {
      "description": "The merchant postal code.",
      "type": "string"
    }
  },
  "name": "MerchantData"
}