Adyen · Schema

CloseStoresRequest

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
accountHolderCode string The code of the account holder.
stores array List of stores to be closed.
View JSON Schema on GitHub

JSON Schema

adyen-closestoresrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CloseStoresRequest",
  "title": "CloseStoresRequest",
  "properties": {
    "accountHolderCode": {
      "description": "The code of the account holder.",
      "type": "string"
    },
    "stores": {
      "description": "List of stores to be closed.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "accountHolderCode",
    "stores"
  ],
  "type": "object"
}