Get Candidate Application Status
Endpoint 3 – Get a Candidate Application Status
GET /postings/:uuid/candidates/:candidateId/status
Use this endpoint to get the application status of a specific candidate against a specific job and expose it in your interface, so the candidate can see what status they are in for the job.
X-SmartToken
HTTP header must be present in each request (Authentication).- The endpoint requires the Posting UUID as a path parameter. It is obtained from Posting API.
- The endpoint requires the Candidate UUID as a path parameter. It is obtained after Post an Application.
Example response
{
"status": "IN-REVIEW",
}
Value | Definition |
---|---|
NEW | Candidate Applied |
IN-REVIEW | Candidate is being reviewed by the hiring team |
INTERVIEW | Candidate is being interviewed by the hiring team |
OFFER | Candidate received an offer |
HIRE | Candidate is hired |
REJECTED | Candidate is rejected |
WITHDRAWN | Candidate has withdrawn interest |
LEAD | Candidate is considered for the job but has not applied |
TRANSFERRED | Candidate is transferred away from the job to another |
Updated 8 months ago