Skip to main content
POST
/
api
/
Candidates
/
{candidateId}
/
jobs
/
{jobId}
/
rejection-email
Reject Candidate from Job.
curl --request POST \
  --url https://api.example.com/api/Candidates/{candidateId}/jobs/{jobId}/rejection-email \
  --header 'Content-Type: application/json' \
  --data '
{
  "candidateIds": [
    123
  ],
  "templateId": 123,
  "sendDelayTypeId": 123,
  "rejectionMadeViaId": 0,
  "subject": "<string>",
  "body": "<string>",
  "rejectionComments": "<string>"
}
'

Path Parameters

candidateId
integer<int32>
required
jobId
integer<int32>
required

Body

application/json
candidateIds
integer<int32>[] | null
templateId
integer<int32>
sendDelayTypeId
integer<int32>
rejectionMadeViaId
enum<integer>
Available options:
0,
1,
2,
3
subject
string | null
body
string | null
rejectionComments
string | null

Response

200

OK