Jobs
Payloads
Each event will consist of
| Payload Field | Description |
|---|---|
payload.event | The category of the event (jobs) |
payload.data.id | The unique identifier for the job. |
payload.data.operation | The action performed on the resource (jobs_created, jobs_updated, jobs_deleted) |
payload.data.last_updated_at | Unix 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.
Updated 6 days ago