Request Body
The unique identifier of the applicant to update
The new status for the applicant. Valid values: Applied, Reviewed, Accepted, Scheduled, Met, Hired, Rejected
Authentication
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --location --request PATCH 'https://api.hirempire.com/v1/update-applicant' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"applicant_id": "xyz456abc123",
"status": "Rejected"
}'
Response
Indicates if the applicant status was updated successfully
The unique identifier of the updated applicant
The new status of the applicant
{
"success": true,
"id": "xyz456abc123",
"status": "Rejected"
}