Adyen · JSON Structure

Terminal Reversal Response Structure

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

Type: object Properties: 6 Required: 1
PaymentsFinancial ServicesFintech

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

Properties

Response POIData OriginalPOITransaction ReversedAmount CustomerOrder PaymentReceipt

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-reversal-response-structure.json",
  "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": "double",
      "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"
  ],
  "name": "ReversalResponse"
}