Workable Real Time Events

List of Events Supported by Workable

Knit Event IDSupportWorkable Webhook Event
ats_applications_newYescandidate_created
ats_applications_modifiedYescandidate_moved
ats_applications_deletedNo
ats_jobs_newNo
ats_jobs_modifiedNo
ats_jobs_deletedNo

Subscribe to Workable Real Time Events

To subscribe to real time events in Workable, use the Subscribe to Real Time Events API. A sample cURL request:

curl --location 'https://api.getknit.dev/v1.0/events.subscribe' \
--header 'X-Knit-Integration-Id: <YOUR_INTEGRATION_ID>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--data '{
    "events": [
        "ats_applications_new",
        "ats_applications_modified"
    ]
}'

 

The response for this would look like the following:

{
  "success": true,
  "data": {}
}

📘

✅ That’s it — you’re good to go!