curl --request POST \
--url https://cutshort.io/api/v1/invite-to-apply \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"talentCardId": "<string>",
"jobId": "<string>",
"message": "<string>"
}
'import requests
url = "https://cutshort.io/api/v1/invite-to-apply"
payload = {
"talentCardId": "<string>",
"jobId": "<string>",
"message": "<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({talentCardId: '<string>', jobId: '<string>', message: '<string>'})
};
fetch('https://cutshort.io/api/v1/invite-to-apply', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"talentCardId": "<string>",
"jobId": "<string>",
"threadId": "<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>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}Invite a candidate to apply
FIRST CONTACT only: invites a talent-database / search candidate to apply to one of your jobs, with your custom message. Tip: include an interview booking link so interested candidates can pick a slot. One invite per (job, candidate) pair — if already invited or already in the job pipeline, returns 409 already_exists_in_job_pipeline; use POST /messages with threadId for follow-ups instead. Replies land in your Cutshort inbox.
Requires scope messages:write (production keys). Metered on the workspace messages quota (check GET /usage). Rate limits: 10 inviteToApply + 120 global requests per 60s per API key.
curl --request POST \
--url https://cutshort.io/api/v1/invite-to-apply \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"talentCardId": "<string>",
"jobId": "<string>",
"message": "<string>"
}
'import requests
url = "https://cutshort.io/api/v1/invite-to-apply"
payload = {
"talentCardId": "<string>",
"jobId": "<string>",
"message": "<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({talentCardId: '<string>', jobId: '<string>', message: '<string>'})
};
fetch('https://cutshort.io/api/v1/invite-to-apply', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"talentCardId": "<string>",
"jobId": "<string>",
"threadId": "<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>"
}{
"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.
