Ashby Real Time Events

List of Events Supported by Ashby

Knit Event IDSupportAshby Webhook Event(s)
ats_applications_newYesapplicationSubmit
ats_applications_modifiedYesapplicationUpdate, candidateHire, candidateStageChange, interviewScheduleCreate, interviewScheduleUpdate, offerCreate, offerUpdate, offerDelete
ats_applications_deletedNo
ats_jobs_newYesjobCreate
ats_jobs_modifiedYesjobUpdate
ats_jobs_deletedNo

Subscribe to Ashby Real Time Events

Step 1: Subscribe to events

To subscribe to real time events in Ashby, 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",
        "ats_jobs_new",
        "ats_jobs_modified"
    ]
}'
 

The response for this would look like the following:

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

📘

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