Delete a job (soft-delete)
curl --request DELETE \
--url https://cutshort.io/api/v1/jobs/{jobId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reason": "duplicate_job",
"reasonText": "<string>"
}
'import requests
url = "https://cutshort.io/api/v1/jobs/{jobId}"
payload = {
"reason": "duplicate_job",
"reasonText": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({reason: 'duplicate_job', reasonText: '<string>'})
};
fetch('https://cutshort.io/api/v1/jobs/{jobId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"jobId": "<string>",
"status": "deleted"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}Jobs
Delete a job (soft-delete)
Soft-deletes a job the same way the Cutshort UI does. Deleted jobs no longer appear in GET /jobs. Requires jobs:write. Optional body: reason + reasonText (defaults to cleanup / Public API).
DELETE
/
jobs
/
{jobId}
Delete a job (soft-delete)
curl --request DELETE \
--url https://cutshort.io/api/v1/jobs/{jobId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reason": "duplicate_job",
"reasonText": "<string>"
}
'import requests
url = "https://cutshort.io/api/v1/jobs/{jobId}"
payload = {
"reason": "duplicate_job",
"reasonText": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({reason: 'duplicate_job', reasonText: '<string>'})
};
fetch('https://cutshort.io/api/v1/jobs/{jobId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"jobId": "<string>",
"status": "deleted"
}{
"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
