Adyen · Schema

LoginResponse

It conveys Information related to the Login to process. Content of the Login Response message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
Response object
POISystemData object
TokenRequestStatus boolean
CustomerOrderStatus boolean
View JSON Schema on GitHub

JSON Schema

terminal-login-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-login-response-schema.json",
  "title": "LoginResponse",
  "description": "It conveys Information related to the Login to process. Content of the Login Response message.",
  "type": "object",
  "properties": {
    "Response": {
      "$ref": "#/components/schemas/Response"
    },
    "POISystemData": {
      "$ref": "#/components/schemas/POISystemData"
    },
    "TokenRequestStatus": {
      "type": "boolean"
    },
    "CustomerOrderStatus": {
      "type": "boolean"
    }
  },
  "required": [
    "Response"
  ]
}