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 | The type of the notification. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransferNotificationRequest",
"title": "TransferNotificationRequest",
"properties": {
"data": {
"description": "Contains details about the event.",
"$ref": "#/components/schemas/TransferNotificationData"
},
"environment": {
"description": "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.",
"type": "string"
},
"type": {
"description": "The type of the notification.",
"enum": [
"balancePlatform.transfer.created",
"balancePlatform.transfer.updated"
],
"type": "string"
}
},
"required": [
"environment",
"data"
]
}