🚧 This project is currently in active development. A sandbox environment will be made available soon for testing and exploration. Stay tuned!
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the webhook event. |
eventType | string | Type of event triggered. Example: platform.bank.status.updated |
created_at | string (ISO 8601) | Timestamp when the event was created. |
version | string | Version of the webhook schema. |
merchant_id | string | Unique identifier for the merchant on Datman. |
meta_data.previous_bank_status | string | Previous bank verification status (e.g. Verified, Unverified) |
meta_data.current_bank_status | string | Updated bank verification status (e.g. Verified, Unverified) |
Below are sample webhook responses for various scenarios:
{
"id": "evt_adyen_663213174_2026-04-29T05:43:26.490Z",
"eventType": "platform.bank.status.updated",
"created_at": "2026-04-29T05:43:26.490Z",
"version": "1.0.0",
"merchant_id": "663213174",
"meta_data": {
"previous_bank_status": "Verified",
"current_bank_status": "Unverified"
}
}