Adyen · Schema

TransactionNotificationRequestV4

TransactionNotificationRequestV4 schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
data object Contains details about the event.
environment string The environment from which the webhook originated. Possible values: **test**, **live**.
type string Type of the webhook.
View JSON Schema on GitHub

JSON Schema

transaction-webhooks-transaction-notification-request-v4-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/transaction-webhooks-transaction-notification-request-v4-schema.json",
  "title": "TransactionNotificationRequestV4",
  "description": "TransactionNotificationRequestV4 schema from Adyen API",
  "type": "object",
  "properties": {
    "data": {
      "description": "Contains details about the event.",
      "$ref": "#/components/schemas/Transaction"
    },
    "environment": {
      "description": "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.",
      "type": "string"
    },
    "type": {
      "description": "Type of the webhook.",
      "enum": [
        "balancePlatform.transaction.created"
      ],
      "type": "string"
    }
  },
  "required": [
    "environment",
    "data"
  ]
}