Jobs

Payloads

Each event will consist of

Payload FieldDescription
payload.eventThe category of the event (jobs)
payload.data.idThe unique identifier for the job.
payload.data.operationThe action performed on the resource (jobs_created, jobs_updated, jobs_deleted)
payload.data.last_updated_atUnix timestamp indicating when the event occurred

Example Payloads

{
   "payload":{
      "event":"jobs",
      "data":{
         "id":46,
         "operation":"jobs_created",
         "last_updated_at":1722519184
      }
   }
}

Get Job Details

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