Adyen · JSON Structure

Report Webhooks Report Notification Data Structure

ReportNotificationData schema from Adyen API

Type: object Properties: 7 Required: 3
PaymentsFinancial ServicesFintech

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

Properties

accountHolder balanceAccount balancePlatform creationDate downloadUrl fileName reportType

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/report-webhooks-report-notification-data-structure.json",
  "description": "ReportNotificationData schema from Adyen API",
  "type": "object",
  "properties": {
    "accountHolder": {
      "description": "The account holder related to the report.",
      "$ref": "#/components/schemas/ResourceReference"
    },
    "balanceAccount": {
      "description": "The balance account related to the report.",
      "$ref": "#/components/schemas/ResourceReference"
    },
    "balancePlatform": {
      "description": "The unique identifier of the balance platform.",
      "type": "string"
    },
    "creationDate": {
      "description": "The date and time when the event was triggered, in ISO 8601 extended format. For example, **2020-12-18T10:15:30+01:00**.",
      "type": "datetime"
    },
    "downloadUrl": {
      "description": "The URL at which you can download the report. To download, you must authenticate your GET request with your [API credentials](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/overview).",
      "type": "string"
    },
    "fileName": {
      "description": "The filename of the report.",
      "type": "string"
    },
    "reportType": {
      "description": "Type of report.",
      "type": "string"
    }
  },
  "required": [
    "fileName",
    "reportType",
    "downloadUrl"
  ],
  "name": "ReportNotificationData"
}