Adyen · Schema

FindTerminalResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
companyAccount string The company account that the terminal is associated with. If this is the only account level shown in the response, the terminal is assigned to the inventory of the company account.
merchantAccount string The merchant account that the terminal is associated with. If the response doesn't contain a `store` the terminal is assigned to this merchant account.
merchantInventory boolean Boolean that indicates if the terminal is assigned to the merchant inventory. This is returned when the terminal is assigned to a merchant account. - If **true**, this indicates that the terminal is i
store string The store code of the store that the terminal is assigned to.
terminal string The unique terminal ID.
View JSON Schema on GitHub

JSON Schema

adyen-findterminalresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FindTerminalResponse",
  "title": "FindTerminalResponse",
  "properties": {
    "companyAccount": {
      "description": "The company account that the terminal is associated with. If this is the only account level shown in the response, the terminal is assigned to the inventory of the company account.",
      "type": "string"
    },
    "merchantAccount": {
      "description": "The merchant account that the terminal is associated with. If the response doesn't contain a `store` the terminal is assigned to this merchant account.",
      "type": "string"
    },
    "merchantInventory": {
      "description": "Boolean that indicates if the terminal is assigned to the merchant inventory. This is returned when the terminal is assigned to a merchant account.\n\n- If **true**, this indicates that the terminal is in the merchant inventory. This also means that the terminal cannot be boarded.\n\n- If **false**, this indicates that the terminal is assigned to the merchant account as an in-store terminal. This means that the terminal is ready to be boarded, or is already boarded.",
      "type": "boolean"
    },
    "store": {
      "description": "The store code of the store that the terminal is assigned to.",
      "type": "string"
    },
    "terminal": {
      "description": "The unique terminal ID.",
      "type": "string"
    }
  },
  "required": [
    "companyAccount",
    "terminal"
  ],
  "type": "object"
}