Adyen · JSON Structure

Terminal Abort Request Structure

It conveys Information requested for identification of the message request carrying the transaction to abort. A message to display on the CustomerError Device could be sent by the Sale System (DisplayOutput). Body of the Abort Request message.

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

MessageReference AbortReason DisplayOutput

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-abort-request-structure.json",
  "description": "It conveys Information requested for identification of the message request carrying the transaction to abort. A message to display on the CustomerError Device could be sent by the Sale System (DisplayOutput). Body of the Abort Request message.",
  "type": "object",
  "properties": {
    "MessageReference": {
      "$ref": "#/components/schemas/MessageReference"
    },
    "AbortReason": {
      "type": "string",
      "pattern": "^.+$",
      "description": "Reason of aborting a transaction."
    },
    "DisplayOutput": {
      "$ref": "#/components/schemas/DisplayOutput"
    }
  },
  "required": [
    "MessageReference",
    "AbortReason"
  ],
  "name": "AbortRequest"
}