Adyen · Schema

AdditionalSettingsResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
excludeEventCodes array Object containing list of event codes for which the notifcation will not be sent.
includeEventCodes array Object containing list of event codes for which the notifcation will be sent.
properties object Object containing boolean key-value pairs. The key can be any [standard webhook additional setting](https://docs.adyen.com/development-resources/webhooks/additional-settings), and the value indicates
View JSON Schema on GitHub

JSON Schema

adyen-additionalsettingsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdditionalSettingsResponse",
  "title": "AdditionalSettingsResponse",
  "properties": {
    "excludeEventCodes": {
      "description": "Object containing list of event codes for which the notifcation will not be sent. ",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "includeEventCodes": {
      "description": "Object containing list of event codes for which the notifcation will be sent. ",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "properties": {
      "additionalProperties": {
        "type": "boolean"
      },
      "description": "Object containing boolean key-value pairs. The key can be any [standard webhook additional setting](https://docs.adyen.com/development-resources/webhooks/additional-settings), and the value indicates if the setting is enabled.\nFor example, `captureDelayHours`: **true** means the standard notifications you get will contain the number of hours remaining until the payment will be captured.",
      "type": "object"
    }
  },
  "type": "object"
}