Adyen · Schema

TransactionNotificationRequestV4

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

adyen-transactionnotificationrequestv4-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionNotificationRequestV4",
  "title": "TransactionNotificationRequestV4",
  "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"
  ],
  "type": "object"
}