Properties
| Name | Type | Description |
|---|---|---|
| address | object | The address of the store. |
| description | string | The description of the store. |
| inStoreTerminals | array | The list of terminals assigned to the store. |
| merchantAccountCode | string | The code of the merchant account. |
| status | string | The status of the store: - `PreActive`: the store has been created, but not yet activated. - `Active`: the store has been activated. This means you can process payments for this store. - `Inactive`: t |
| store | string | The code of the store. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/pos-terminal-store-schema.json",
"title": "Store",
"description": "Store schema from Adyen API",
"type": "object",
"properties": {
"address": {
"description": "The address of the store.",
"$ref": "#/components/schemas/Address"
},
"description": {
"description": "The description of the store.",
"type": "string"
},
"inStoreTerminals": {
"description": "The list of terminals assigned to the store.",
"items": {
"type": "string"
},
"type": "array"
},
"merchantAccountCode": {
"description": "The code of the merchant account.",
"type": "string"
},
"status": {
"description": "The status of the store:\n\n- `PreActive`: the store has been created, but not yet activated. \n\n- `Active`: the store has been activated. This means you can process payments for this store. \n\n- `Inactive`: the store is currently not active. \n\n- `InactiveWithModifications`: the store is currently not active, but payment modifications such as refunds are possible. \n\n- `Closed`: the store has been closed. ",
"type": "string"
},
"store": {
"description": "The code of the store.",
"type": "string"
}
},
"required": [
"store"
]
}