Adyen · Schema

DeleteNotificationConfigurationRequest

DeleteNotificationConfigurationRequest schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
notificationIds array A list of IDs of the notification subscription configurations to be deleted.
View JSON Schema on GitHub

JSON Schema

notification-configurations-delete-notification-configuration-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/notification-configurations-delete-notification-configuration-request-schema.json",
  "title": "DeleteNotificationConfigurationRequest",
  "description": "DeleteNotificationConfigurationRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "notificationIds": {
      "description": "A list of IDs of the notification subscription configurations to be deleted.",
      "items": {
        "format": "int64",
        "type": "integer"
      },
      "type": "array"
    }
  },
  "required": [
    "notificationIds"
  ]
}