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://staging.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
{
  "data": {
    "candidate_id": "<Pulsifi Candidate ID>",
    "ext_reference_id": "<ATS Reference ID>",
    "job_id": "<Pulsifi Job ID>",
    "is_anonymous_candidate": false,
    "email": "johndoe@gmail.com",
    "first_name": "John",
    "last_name": "Doe",
    "status": "completed",
    "invitation_link": "<Invitation Link>",
    "invitation_expired_at": "2024-12-31T23:59:59Z",
    "created_at": "2024-09-02T10:30:00Z",
    "report_pdf_link": "<Report PDF Link>",
    "report_profile_link": "<Report Profile Link>",
    "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
      }
    ]
  },
  "meta": null
}