Adyen · Schema

AccountEvent

AccountEvent schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
event string The event. >Permitted values: `InactivateAccount`, `RefundNotPaidOutTransfers`. For more information, refer to [Verification checks](https://docs.adyen.com/marketplaces-and-platforms/classic/verificat
executionDate string The date on which the event will take place.
reason string The reason why this event has been created.
View JSON Schema on GitHub

JSON Schema

notifications-account-event-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/notifications-account-event-schema.json",
  "title": "AccountEvent",
  "description": "AccountEvent schema from Adyen API",
  "type": "object",
  "properties": {
    "event": {
      "description": "The event.\n>Permitted values: `InactivateAccount`, `RefundNotPaidOutTransfers`.\nFor more information, refer to [Verification checks](https://docs.adyen.com/marketplaces-and-platforms/classic/verification-process).",
      "enum": [
        "InactivateAccount",
        "RefundNotPaidOutTransfers"
      ],
      "type": "string"
    },
    "executionDate": {
      "description": "The date on which the event will take place.",
      "format": "date-time",
      "type": "string"
    },
    "reason": {
      "description": "The reason why this event has been created.",
      "type": "string"
    }
  }
}