Adyen · Schema

ListTerminalsResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
_links object Pagination references.
data array The list of terminals and their details.
itemsTotal integer Total number of items.
pagesTotal integer Total number of pages.
View JSON Schema on GitHub

JSON Schema

adyen-listterminalsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListTerminalsResponse",
  "title": "ListTerminalsResponse",
  "properties": {
    "_links": {
      "description": "Pagination references.",
      "$ref": "#/components/schemas/PaginationLinks"
    },
    "data": {
      "description": "The list of terminals and their details.",
      "items": {
        "$ref": "#/components/schemas/Terminal"
      },
      "type": "array"
    },
    "itemsTotal": {
      "description": "Total number of items.",
      "format": "int32",
      "type": "integer"
    },
    "pagesTotal": {
      "description": "Total number of pages.",
      "format": "int32",
      "type": "integer"
    }
  },
  "required": [
    "itemsTotal",
    "pagesTotal"
  ],
  "type": "object"
}