Adyen · Schema

PaidoutReversedNotificationRequestItem

PaymentsFinancial ServicesFintech

Properties

Name Type Description
additionalData object A generic container for extra fields.
amount object The payment amount. For HTTP POST notifications, currency and value are returned as URL parameters.
eventCode string The type of event the notification item is for.
eventDate string The time when the event was generated. Format: ISO 8601; yyyy-MM-DDThh:mm:ssTZD
merchantAccountCode string The merchant account identifier used in the transaction the notification item is for.
merchantReference string Your reference to uniquely identify the payment.
originalReference string For modifications, this field corresponds to the payment request assigned to the original payment.
paymentMethod string The payment method used in the transaction.
pspReference string The PSP reference for the Capture's PSP reference.
reason string Contains the bank statement description if present, else it contains `PaidOutReversed`.
success string Informs about the outcome of the event (`eventCode`) the notification is for. If `true`: the event was executed successfully. If `false`: the event was not executed successfully.
View JSON Schema on GitHub

JSON Schema

adyen-paidoutreversednotificationrequestitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaidoutReversedNotificationRequestItem",
  "title": "PaidoutReversedNotificationRequestItem",
  "properties": {
    "additionalData": {
      "description": "A generic container for extra fields.",
      "$ref": "#/components/schemas/NotificationAdditionalData"
    },
    "amount": {
      "description": "The payment amount. For HTTP POST notifications, currency and value are returned as URL parameters.",
      "$ref": "#/components/schemas/Amount"
    },
    "eventCode": {
      "description": "The type of event the notification item is for.",
      "enum": [
        "PAIDOUT_REVERSED"
      ],
      "type": "string"
    },
    "eventDate": {
      "description": "The time when the event was generated. Format: ISO 8601; yyyy-MM-DDThh:mm:ssTZD",
      "example": "2021-07-17T13:42:40+01:00",
      "format": "date-time",
      "type": "string"
    },
    "merchantAccountCode": {
      "description": "The merchant account identifier used in the transaction the notification item is for.",
      "type": "string"
    },
    "merchantReference": {
      "description": "Your reference to uniquely identify the payment.",
      "type": "string"
    },
    "originalReference": {
      "description": "For modifications, this field corresponds to the payment request assigned to the original payment.",
      "type": "string"
    },
    "paymentMethod": {
      "description": "The payment method used in the transaction.",
      "example": "visa, mc, iDeal",
      "type": "string"
    },
    "pspReference": {
      "description": "The PSP reference for the Capture's PSP reference.",
      "type": "string"
    },
    "reason": {
      "description": "Contains the bank statement description if present, else it contains `PaidOutReversed`.",
      "type": "string"
    },
    "success": {
      "description": "Informs about the outcome of the event (`eventCode`) the notification is for. \nIf `true`: the event was executed successfully. \nIf `false`: the event was not executed successfully.",
      "type": "string"
    }
  },
  "required": [
    "merchantReference",
    "merchantAccountCode",
    "eventDate",
    "amount",
    "success",
    "eventCode",
    "pspReference"
  ],
  "type": "object"
}