Retrieves the candidate details and results.
Headers
- Accept :
application/json
- Content-Type :
application/json
- Authorization :
Bearer {access_token}
Path Parameters
candidate_id
nullable string RequiredThe unique identifier for the candidate in the Pulsifi system.
Response
200 OK.
Parameters
GET /standard/candidates/:candidate_id
curl -X GET 'https://api.pulsifi.me/partner/v1.0/standard/candidates/{candidate_id}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
Response
{
"candidate_id": "string",
"ext_reference_id": "ATS12345",
"job_id": "uuid",
"is_anonymous_candidate": false,
"email": "johndoe@gmail.com",
"first_name": "John",
"last_name": "Doe",
"status": "completed",
"invitation_link": "string",
"invitation_expired_at": "2024-12-31T23:59:59Z",
"created_at": "2024-09-02T10:30:00Z",
"report_pdf_link": "https://link.to/pdf",
"report_profile_link": "https://link.to/profile",
"scores": [
{
"score_format": 100,
"score_type": "role_fit",
"score_value": 85
},
{
"score_format": 100,
"score_type": "organizational_fit",
"score_value": 90
}
],
"additional_scores": [
{
"score_format": 100,
"score_type": "reasoning_numeric",
"score_value": 88
},
{
"score_format": 100,
"score_type": "reasoning_verbal",
"score_value": 88
},
{
"score_format": 100,
"score_type": "reasoning_logical",
"score_value": 88
}
]
}