🚧 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.merchant.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_status | string | Previous merchant status (e.g., ACTIVE). |
meta_data.new_status | string | Updated merchant status (e.g., PENDING). |
Below are sample webhook responses for various scenarios:
{
"id": "evt_adyen_663213174_2026-04-29T05:47:20.008Z",
"eventType": "platform.merchant.status.updated",
"created_at": "2026-04-29T05:47:20.008Z",
"version": "1.0.0",
"merchant_id": "111111",
"meta_data": {
"previous_status": "ACTIVE",
"new_status": "PENDING"
}
}