Adyen · Schema

ReversalResponse

It conveys Information related to the reversal processed by the POI System. Content of the Reversal Response message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
Response object
POIData object
OriginalPOITransaction object
ReversedAmount number Copy.
CustomerOrder array
PaymentReceipt array
View JSON Schema on GitHub

JSON Schema

terminal-reversal-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-reversal-response-schema.json",
  "title": "ReversalResponse",
  "description": "It conveys Information related to the reversal processed by the POI System. Content of the Reversal Response message.",
  "type": "object",
  "properties": {
    "Response": {
      "$ref": "#/components/schemas/Response"
    },
    "POIData": {
      "$ref": "#/components/schemas/POIData"
    },
    "OriginalPOITransaction": {
      "$ref": "#/components/schemas/OriginalPOITransaction"
    },
    "ReversedAmount": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0,
      "description": "Copy."
    },
    "CustomerOrder": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomerOrder"
      }
    },
    "PaymentReceipt": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PaymentReceipt"
      }
    }
  },
  "required": [
    "Response"
  ]
}