Applications
Move application to stage
Moves an application to a specified stage.
PUT
/
ats
/
applications
/
{application_id}
/
stage
Authorization
Header
Path
Body
curl --request PUT \
--url https://api.kombo.dev/v1/ats/applications/{application_id}/stage \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'X-Integration-Id: <x-integration-id>' \
--data '{
"stage_id": "3PJ8PZhZZa1eEdd2DtPNtVup"
}'
{
"status": "success",
"data": {}
}
This endpoint requires the permission Create and manage candidates and applications to be enabled in your scope config.
Example Request Body
{
"stage_id": "3PJ8PZhZZa1eEdd2DtPNtVup"
}
Authorizations
Authorization
string
headerrequiredCreate an API key on the Secrets page in the Kombo dashboard.
Headers
X-Integration-Id
string
requiredID of the integration you want to interact with.
Path Parameters
application_id
string
requiredPUT /ats/applications/:application_id/stage parameter
Body
application/json
stage_id
string
requiredThe ID of the stage to move the application to. This ID must be the ID of a stage that is connected to the job that the application is connected to.
remote_fields
object
Additional fields that we will pass through to specific ATS systems.
Response
200 - application/json
status
enum<string>
requiredAvailable options:
success
data
object
requiredcurl --request PUT \
--url https://api.kombo.dev/v1/ats/applications/{application_id}/stage \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'X-Integration-Id: <x-integration-id>' \
--data '{
"stage_id": "3PJ8PZhZZa1eEdd2DtPNtVup"
}'
{
"status": "success",
"data": {}
}