Schedules
Payloads
Each event will consist of
| Payload Field | Description |
|---|---|
payload.event | The category of the event (schedules) |
payload.data.id | The unique identifier for the schedule. |
payload.data.operation | The action performed on the resource (schedules_created, schedules_updated, schedules_deleted) |
payload.data.last_updated_at | Unix timestamp indicating when the event occurred |
Example Payloads
{
"payload":{
"event":"schedules",
"data":{
"id":46,
"operation":"schedules_created",
"last_updated_at":1722519184
}
}
}Get Schedule Details
After receiving a webhook event for a schedule, you can retrieve the full schedule details using the Schedule API endpoint. Use the payload.data.id provided in the payload to fetch the latest state of the schedule.
Updated 6 days ago