Adyen · Schema

DiagnosisRequest

It conveys Information related to the target POI for which the diagnosis is requested. Content of the Diagnosis Request message.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
POIID string MessageHeader.POIID.
HostDiagnosisFlag boolean Indicates if Host Diagnosis are required.
AcquirerID array
View JSON Schema on GitHub

JSON Schema

adyen-diagnosisrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DiagnosisRequest",
  "title": "DiagnosisRequest",
  "type": "object",
  "description": "It conveys Information related to the target POI for which the diagnosis is requested. Content of the Diagnosis Request message.",
  "properties": {
    "POIID": {
      "type": "string",
      "pattern": "^.+$",
      "description": "MessageHeader.POIID."
    },
    "HostDiagnosisFlag": {
      "type": "boolean",
      "default": false,
      "description": "Indicates if Host Diagnosis are required."
    },
    "AcquirerID": {
      "type": "array",
      "items": {
        "type": "integer",
        "description": "Present if requesting the diagnosis of these hosts only."
      }
    }
  }
}