Skip to main content

Overview

Webhooks are essential for facilitating real-time communication between web applications. Kitchen leverages webhooks to automate processes triggered by various events, ensuring seamless data transmission and enhancing operational efficiency. By instantly notifying systems of updates, webhooks enable agile and responsive workflows, making them integral to modern application integration strategies.

Payload

id
string
The id of the event. Unique for each event.
created
timestamp
When the resource was affected.
data
array
The affected resource.
type
string
The type of the event.

Retry mechanism

Kitchen attempts to deliver a given event for a total of 3 times with an exponential back off. First time is immediate, the second one is after 10 seconds and the third one is after 1 minute and 40 seconds. In the webhook modal, you can view when the next retry will occur.

Example Payload
{
"id": "evt_593e00a1e5374398cd8da7a9",
"type": "board.created",
"created": 1719322973,
"data": {
"archived_at": null,
"created_at": "2024-03-21T07:32:03+00:00",
"id": "tskb_5e22e833684835b70ea85e45",
"title": "The board title",
"updated_at": "2024-03-21T07:32:03+00:00",
"visibility": "internal"
}
}