Webhook Entity
A webhook event is always triggered for an entity. When the event occurs, relevant information of the entity is shared in the webhook notification.
Webhook Payload
Every webhook payload is structured in below format.
| Key | Type | Description |
|---|---|---|
| id | String | Unique webhook notification id. Can be used to resolve idempotency. We promise “at least once delivery” of event. There can be multiple deliveries of same event in boundary cases. |
| created_at | Long | Epoch time of webhook notification creation |
| event | String | Webhook event name (one of the available events) |
| entities | List of String | List of entities which are present in payload (more details below) |
| payload | JsonObject | A json object having entities as keys and their respective objects as values |