Adyen · JSON Structure

Pos Terminal Get Terminals Under Account Response Structure

GetTerminalsUnderAccountResponse schema from Adyen API

Type: object Properties: 3 Required: 1
PaymentsFinancial ServicesFintech

GetTerminalsUnderAccountResponse is a JSON Structure definition published by Adyen, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

companyAccount inventoryTerminals merchantAccounts

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/pos-terminal-get-terminals-under-account-response-structure.json",
  "description": "GetTerminalsUnderAccountResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "companyAccount": {
      "description": "Your company account.",
      "type": "string"
    },
    "inventoryTerminals": {
      "description": "Array that returns a list of all terminals that are in the inventory of the company account.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "merchantAccounts": {
      "description": "Array that returns a list of all merchant accounts belonging to the company account.",
      "items": {
        "$ref": "#/components/schemas/MerchantAccount"
      },
      "type": "array"
    }
  },
  "required": [
    "companyAccount"
  ],
  "name": "GetTerminalsUnderAccountResponse"
}