Adyen · JSON Structure

Configuration Webhooks Sweep Configuration Notification Request Structure

SweepConfigurationNotificationRequest schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

SweepConfigurationNotificationRequest is a JSON Structure definition published by Adyen, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data environment type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-webhooks-sweep-configuration-notification-request-structure.json",
  "description": "SweepConfigurationNotificationRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "data": {
      "description": "Contains event details.",
      "$ref": "#/components/schemas/SweepConfigurationNotificationData"
    },
    "environment": {
      "description": "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.",
      "type": "string"
    },
    "type": {
      "description": "Type of webhook.",
      "enum": [
        "balancePlatform.balanceAccountSweep.created",
        "balancePlatform.balanceAccountSweep.updated",
        "balancePlatform.balanceAccountSweep.deleted"
      ],
      "type": "string"
    }
  },
  "required": [
    "environment",
    "type",
    "data"
  ],
  "name": "SweepConfigurationNotificationRequest"
}