Adyen · Schema

AbortRequest

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.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
MessageReference object
AbortReason string Reason of aborting a transaction.
DisplayOutput object
View JSON Schema on GitHub

JSON Schema

adyen-abortrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AbortRequest",
  "title": "AbortRequest",
  "type": "object",
  "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.",
  "properties": {
    "MessageReference": {
      "$ref": "#/components/schemas/MessageReference"
    },
    "AbortReason": {
      "type": "string",
      "pattern": "^.+$",
      "description": "Reason of aborting a transaction."
    },
    "DisplayOutput": {
      "$ref": "#/components/schemas/DisplayOutput"
    }
  },
  "required": [
    "MessageReference",
    "AbortReason"
  ]
}