Schedules

Payloads

Each event will consist of

Payload FieldDescription
payload.eventThe category of the event (schedules)
payload.data.idThe unique identifier for the schedule.
payload.data.operationThe action performed on the resource (schedules_created, schedules_updated, schedules_deleted)
payload.data.last_updated_atUnix 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.