🚧 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.feetier.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_fee_tier_id | number | Previous fee tier assigned to the merchant. |
meta_data.new_fee_tier_id | number | Updated fee tier assigned to the merchant. |
meta_data.effective_from | string (ISO 8601) | Timestamp from when the new fee tier becomes effective. |
Below are sample webhook responses for various scenarios:
{
"id": "evt_663213174_2026-04-24T09:17:39.886Z",
"eventType": "platform.feetier.updated",
"created_at": "2026-04-24T09:17:39.886Z",
"version": "1.0.0",
"merchant_id": "111111",
"meta_data": {
"previous_fee_tier_id": 1,
"new_fee_tier_id": 2,
"effective_from": "2026-04-24T09:17:39.886Z"
}
}