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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountEvent",
"title": "AccountEvent",
"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"
}
},
"type": "object"
}