Adyen · Schema

HostStatus

Indicate the reachability of the host by the POI Terminal. State of a Host.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
AcquirerID integer Identification of the Acquirer.
IsReachableFlag boolean Indicate if a Host is reachable.
View JSON Schema on GitHub

JSON Schema

adyen-hoststatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HostStatus",
  "title": "HostStatus",
  "type": "object",
  "description": "Indicate the reachability of the host by the POI Terminal. State of a Host.",
  "properties": {
    "AcquirerID": {
      "type": "integer",
      "description": "Identification of the Acquirer."
    },
    "IsReachableFlag": {
      "type": "boolean",
      "default": true,
      "description": "Indicate if a Host is reachable."
    }
  },
  "required": [
    "AcquirerID"
  ]
}