Properties
| Name | Type | Description |
|---|---|---|
| data | object | Contains event details. |
| environment | string | The environment from which the webhook originated. Possible values: **test**, **live**. |
| type | string | Type of webhook. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountHolderNotificationRequest",
"title": "AccountHolderNotificationRequest",
"properties": {
"data": {
"description": "Contains event details.",
"$ref": "#/components/schemas/AccountHolderNotificationData"
},
"environment": {
"description": "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.",
"type": "string"
},
"type": {
"description": "Type of webhook.",
"enum": [
"balancePlatform.accountHolder.updated",
"balancePlatform.accountHolder.created"
],
"type": "string"
}
},
"required": [
"environment",
"type",
"data"
],
"type": "object"
}