Properties
| Name | Type | Description |
|---|---|---|
| acquirerId | string | The unique identifier of the merchant's acquirer. |
| city | string | The city where the merchant is located. |
| country | string | The country where the merchant is located. |
| mcc | string | The merchant category code. |
| merchantId | string | The merchant identifier. |
| name | string | The name of the merchant's shop or service. |
| postalCode | string | The merchant postal code. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransferNotificationMerchantData",
"title": "TransferNotificationMerchantData",
"properties": {
"acquirerId": {
"description": "The unique identifier of the merchant's acquirer.",
"type": "string"
},
"city": {
"description": "The city where the merchant is located.",
"type": "string"
},
"country": {
"description": "The country where the merchant is located.",
"type": "string"
},
"mcc": {
"description": "The merchant category code.",
"type": "string"
},
"merchantId": {
"description": "The merchant identifier.",
"type": "string"
},
"name": {
"description": "The name of the merchant's shop or service.",
"type": "string"
},
"postalCode": {
"description": "The merchant postal code.",
"type": "string"
}
},
"type": "object"
}