GET Track Applicant Details¶
This API retrieves complete details of an applicant in a track, including stage-wise report data.
Request URL¶
GET /tracks/<track_id>/applicants/<application_id>
Warning
Make sure to add your API key in Header of the request
Parameters¶
Parameter |
Type |
Description |
|---|---|---|
track_id |
integer |
ID of the Track |
application_id |
integer |
Application ID of the candidate |
Response¶
A JSON response containing applicant details, submitted responses, and stage-wise report payload.
{
"track_id": "integer",
"track_title": "string",
"applicant": {
"application_id": "integer",
"candidate_id": "integer",
"name": "string",
"email": "string",
"stage_status": "string",
"score": "number",
"date_added": "string",
"last_updated_at": "string"
},
"current_stage": {
"stage_id": "string",
"name": "string",
"type": "string",
"color": "string"
},
"stages": [
{
"stage_id": "string",
"name": "string",
"type": "string"
}
],
"submitted_response": [
{
"label": "string",
"value": "string"
}
],
"stage_wise_report": {
"stage_name": { }
},
"parsed_resume": { }
}
Note
stage_wise_report and parsed_resume are dynamic objects and vary by track configuration and candidate progression.