Adyen · JSON Structure

Terminal Reversal Request Structure

It conveys Information related to the reversal of a previous payment or a loyalty transaction. Content of the Reversal Request message.

Type: object Properties: 5 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

SaleData OriginalPOITransaction ReversedAmount ReversalReason CustomerOrder

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-request-structure.json",
  "description": "It conveys Information related to the reversal of a previous payment or a loyalty transaction. Content of the Reversal Request message.",
  "type": "object",
  "properties": {
    "SaleData": {
      "$ref": "#/components/schemas/SaleData"
    },
    "OriginalPOITransaction": {
      "$ref": "#/components/schemas/OriginalPOITransaction"
    },
    "ReversedAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0,
      "description": "ReversedAmount is implicitely the AuthorizedAmount if absent."
    },
    "ReversalReason": {
      "$ref": "#/components/schemas/ReversalReason"
    },
    "CustomerOrder": {
      "$ref": "#/components/schemas/CustomerOrder"
    }
  },
  "required": [
    "OriginalPOITransaction",
    "ReversalReason"
  ],
  "name": "ReversalRequest"
}