Move an application to another stage
curl --request POST \
--url https://cutshort.io/api/v1/applications/{applicationId}/move-stage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"stageId": "<string>"
}
'import requests
url = "https://cutshort.io/api/v1/applications/{applicationId}/move-stage"
payload = { "stageId": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({stageId: '<string>'})
};
fetch('https://cutshort.io/api/v1/applications/{applicationId}/move-stage', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"applicationId": "<string>",
"movedToStage": {
"stageId": "<string>",
"title": "<string>",
"type": "<string>"
},
"taskId": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}Applications
Move an application to another stage
Moves one application to a different pipeline stage on the same job. Get applicationId from GET /jobs//applications and stageId from GET /jobs//stages. From the Applications stage (type candidates), only Shortlisted (connected) or Rejected are valid — other targets return 400 invalid_stage_move.
Requires scope stages:write (production keys).
POST
/
applications
/
{applicationId}
/
move-stage
Move an application to another stage
curl --request POST \
--url https://cutshort.io/api/v1/applications/{applicationId}/move-stage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"stageId": "<string>"
}
'import requests
url = "https://cutshort.io/api/v1/applications/{applicationId}/move-stage"
payload = { "stageId": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({stageId: '<string>'})
};
fetch('https://cutshort.io/api/v1/applications/{applicationId}/move-stage', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"applicationId": "<string>",
"movedToStage": {
"stageId": "<string>",
"title": "<string>",
"type": "<string>"
},
"taskId": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}Authorizations
Workspace-scoped API key. Prefix: cs_live_. Eval keys (self-serve from Cutshort → Settings → Integrations → API Key) can search and get candidate details within small quotas; production keys add job posting and candidate messaging with higher limits.
Path Parameters
Body
application/json
Target stage ID from list stages
