Adyen · Schema

AchNotificationOfChangeNotificationRequestData

AchNotificationOfChangeNotificationRequestData schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
notificationOfChange object The Notification of Change information.
pspReference string PSP Reference.
shopperReference string Shopper reference.
View JSON Schema on GitHub

JSON Schema

webhooks-ach-notification-of-change-notification-request-data-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/webhooks-ach-notification-of-change-notification-request-data-schema.json",
  "title": "AchNotificationOfChangeNotificationRequestData",
  "description": "AchNotificationOfChangeNotificationRequestData schema from Adyen API",
  "type": "object",
  "properties": {
    "notificationOfChange": {
      "description": "The Notification of Change information.",
      "$ref": "#/components/schemas/AchNotificationOfChangeNotificationRequestDataNoc"
    },
    "pspReference": {
      "description": "PSP Reference.",
      "type": "string"
    },
    "shopperReference": {
      "description": "Shopper reference.",
      "type": "string"
    }
  },
  "required": [
    "pspReference",
    "shopperReference",
    "notificationOfChange"
  ]
}