Tasks

Payloads

Each event will consist of

Payload FieldDescription
payload.eventThe category of the event (tasks)
payload.data.idThe unique identifier for the task.
payload.data.operationThe action performed on the resource (tasks_created, tasks_updated, tasks_deleted)
payload.data.last_updated_atUnix timestamp indicating when the event occurred

Example Payloads

{
   "payload":{
      "event":"tasks",
      "data":{
         "id":3432,
         "operation":"tasks_created",
         "last_updated_at":1722519184
      }
   }
}

Get Task Details

After receiving a webhook event for a task, you can retrieve the full task details using the Task API endpoint. Use the payload.data.id provided in the payload to fetch the latest state of the task.


Did this page help you?