Reading All Applications
In order to ensure you read all applications from your customer’s ATS, you must configure theOnly Sync Created Applications
toggle to off in your dashboard.

data-changed
webhook allowing you to fetch any new data from Kombo.
More information on fetching data can be found in Fetching Data.

data-changed
webhook.
Then, using the GET Applications endpoint, applications can be read from the ATS into your system.
Set Screening Trigger stage
You will want to identify the trigger stage(s) for your screening. On the GET Jobs endpoint, you will see the stages object.stages.id
, or stage name to identify the stage(s) to trigger screening. You may also want to involve your customer in identifying the trigger stage. We recommend using the stages.id
.
If you plan on moving an application we would recommend that you also identify
the
stages.id
for the next stage in the application process and store this
in your database. As you will need this in order to move the application to
the next stage.Tracking Stages
You will have to keep track of applications during the application process in order to check whether the stage of the application has changed to the trigger stage. To see whether the stage of an application has changed, you have to implement some tracking logic on your end by calling the GET Applications endpoint with theupdated_after
filter and then comparing the stage of each candidate with the stage you currently have in your system.
When you fetch the applications via the GET Applications endpoint, you will get the current_stage_id
and current_stage
properties for each application. The current_stage
is just an expanded version of the current_stage_id
, so you can use either of them.
stages
property when calling the GET Jobs endpoint.
Get Attachments
As a screening company you may want to read candidates’ CVs. This can be done using the GET Application Attachments endpoint.For every application you must make a request to retrieve the attachment
- This endpoint requires the permission
Read document attachments
to be enabled in your scope configuration.
application_id
for each application you want to get the attachments for.