Adyen · Schema

ReversalRequest

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

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
SaleData object
OriginalPOITransaction object
ReversedAmount number ReversedAmount is implicitely the AuthorizedAmount if absent.
ReversalReason object
CustomerOrder object
View JSON Schema on GitHub

JSON Schema

terminal-reversal-request-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-request-schema.json",
  "title": "ReversalRequest",
  "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": "number",
      "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"
  ]
}