PUT
/
ats
/
applications
/
{application_id}
/
stage
curl --request PUT \
  --url https://api.kombo.dev/v1/ats/applications/{application_id}/stage \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Integration-Id: <x-integration-id>' \
  --data '{
  "stage_id": "3PJ8PZhZZa1eEdd2DtPNtVup"
}'
{
"status": "success",
"data": {}
}

This endpoint requires the permission Set application stage to be enabled in your scope config.

Example Request Body

{
  "stage_id": "3PJ8PZhZZa1eEdd2DtPNtVup"
}

Authorizations

Authorization
string
header
required

Create an API key on the Secrets page in the Kombo dashboard.

Headers

X-Integration-Id
string
required

ID of the integration you want to interact with.

Path Parameters

application_id
string
required

The Kombo ID of the application you want to move to a different stage.

Body

application/json

PUT /ats/applications/:application_id/stage request body

The body is of type object.

Response

200
application/json

PUT /ats/applications/:application_id/stage Successful response

The response is of type object.