🚧 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.account.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_account_status | string | Previous account status of the merchant (e.g. Verified, Unverified) |
meta_data.current_account_status | string | Updated account status of the merchant (e.g. Verified, Unverified) |
Below are sample webhook responses for various scenarios:
{
"id": "evt_adyen_663213174_2026-04-29T05:38:12.265Z",
"eventType": "platform.account.status.updated",
"created_at": "2026-04-29T05:38:12.265Z",
"version": "1.0.0",
"merchant_id": "663213174",
"meta_data": {
"previous_account_status": "Unverified",
"current_account_status": "Verified"
}
}