Adyen · Schema

PaymentFailureNotificationContent

PaymentFailureNotificationContent schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
errorFields array Missing or invalid fields that caused the payment error.
errorMessage object The error message.
modificationMerchantReference string The `reference` of the capture or refund.
modificationPspReference string The `pspReference` of the capture or refund.
paymentMerchantReference string The `reference` of the payment.
paymentPspReference string The `pspReference` of the payment.
View JSON Schema on GitHub

JSON Schema

notifications-payment-failure-notification-content-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/notifications-payment-failure-notification-content-schema.json",
  "title": "PaymentFailureNotificationContent",
  "description": "PaymentFailureNotificationContent schema from Adyen API",
  "type": "object",
  "properties": {
    "errorFields": {
      "description": "Missing or invalid fields that caused the payment error.",
      "items": {
        "$ref": "#/components/schemas/ErrorFieldType"
      },
      "type": "array"
    },
    "errorMessage": {
      "description": "The error message.",
      "$ref": "#/components/schemas/Message"
    },
    "modificationMerchantReference": {
      "description": "The `reference` of the capture or refund.",
      "type": "string"
    },
    "modificationPspReference": {
      "description": "The `pspReference` of the capture or refund.",
      "type": "string"
    },
    "paymentMerchantReference": {
      "description": "The `reference` of the payment.",
      "type": "string"
    },
    "paymentPspReference": {
      "description": "The `pspReference` of the payment.",
      "type": "string"
    }
  }
}