Workable Real Time Events
List of Events Supported by Workable
Knit Event ID | Support | Workable Webhook Event |
---|---|---|
ats_applications_new | Yes | candidate_created |
ats_applications_modified | Yes | candidate_moved |
ats_applications_deleted | No | – |
ats_jobs_new | No | – |
ats_jobs_modified | No | – |
ats_jobs_deleted | No | – |
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!
Updated 3 days ago