Adyen · JSON Structure

Terminal Response Structure

If Result is Success, ErrorCondition is absent or not used in the processing of the message. In the other cases, the ErrorCondition has to be present and can refine the processing of the message response. AdditionalResponse gives more information about the success or the failure of the message request processing, for logging without real time involvements. Result of a message request processing.

Type: object Properties: 3 Required: 1
PaymentsFinancial ServicesFintech

Response is a JSON Structure definition published by Adyen, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Result ErrorCondition AdditionalResponse

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-response-structure.json",
  "description": "If Result is Success, ErrorCondition is absent or not used in the processing of the message. In the other cases, the ErrorCondition has to be present and can refine the processing of the message response. AdditionalResponse gives more information about the success or the failure of the message request processing, for logging without real time involvements. Result of a message request processing.",
  "type": "object",
  "properties": {
    "Result": {
      "$ref": "#/components/schemas/Result"
    },
    "ErrorCondition": {
      "$ref": "#/components/schemas/ErrorCondition"
    },
    "AdditionalResponse": {
      "type": "string",
      "pattern": "^.+$",
      "description": "If present, the POI logs it for further examination."
    }
  },
  "required": [
    "Result"
  ],
  "name": "Response"
}