Adyen · Schema

TestNotificationConfigurationRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
eventTypes array The event types to test. If left blank, then all of the configured event types will be tested. >Permitted values: `ACCOUNT_HOLDER_CREATED`, `ACCOUNT_CREATED`, `ACCOUNT_UPDATED`, `ACCOUNT_HOLDER_UPDATE
notificationId integer The ID of the notification subscription configuration to be tested.
View JSON Schema on GitHub

JSON Schema

adyen-testnotificationconfigurationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TestNotificationConfigurationRequest",
  "title": "TestNotificationConfigurationRequest",
  "properties": {
    "eventTypes": {
      "description": "The event types to test.  If left blank, then all of the configured event types will be tested.\n>Permitted values: `ACCOUNT_HOLDER_CREATED`, `ACCOUNT_CREATED`, `ACCOUNT_UPDATED`, `ACCOUNT_HOLDER_UPDATED`, `ACCOUNT_HOLDER_STATUS_CHANGE`, `ACCOUNT_HOLDER_STORE_STATUS_CHANGE` `ACCOUNT_HOLDER_VERIFICATION`, `ACCOUNT_HOLDER_LIMIT_REACHED`, `ACCOUNT_HOLDER_PAYOUT`, `PAYMENT_FAILURE`, `SCHEDULED_REFUNDS`, `REPORT_AVAILABLE`, `TRANSFER_FUNDS`, `BENEFICIARY_SETUP`, `COMPENSATE_NEGATIVE_BALANCE`.",
      "items": {
        "enum": [
          "ACCOUNT_CLOSED",
          "ACCOUNT_CREATED",
          "ACCOUNT_FUNDS_BELOW_THRESHOLD",
          "ACCOUNT_HOLDER_CREATED",
          "ACCOUNT_HOLDER_LIMIT_REACHED",
          "ACCOUNT_HOLDER_MIGRATED",
          "ACCOUNT_HOLDER_PAYOUT",
          "ACCOUNT_HOLDER_STATUS_CHANGE",
          "ACCOUNT_HOLDER_STORE_STATUS_CHANGE",
          "ACCOUNT_HOLDER_UPCOMING_DEADLINE",
          "ACCOUNT_HOLDER_UPDATED",
          "ACCOUNT_HOLDER_VERIFICATION",
          "ACCOUNT_UPDATED",
          "BENEFICIARY_SETUP",
          "COMPENSATE_NEGATIVE_BALANCE",
          "DIRECT_DEBIT_INITIATED",
          "FUNDS_MIGRATED",
          "PAYMENT_FAILURE",
          "PENDING_CREDIT",
          "REFUND_FUNDS_TRANSFER",
          "REPORT_AVAILABLE",
          "SCHEDULED_REFUNDS",
          "SCORE_SIGNAL_TRIGGERED",
          "TRANSFER_FUNDS",
          "TRANSFER_NOT_PAIDOUT_TRANSFERS"
        ],
        "type": "string"
      },
      "type": "array"
    },
    "notificationId": {
      "description": "The ID of the notification subscription configuration to be tested.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "notificationId"
  ],
  "type": "object"
}