Back to Organization & People Management
Get Candidate
Retrieves details for a specific candidate by ID
Request Details
path Parameters
Field | Type | Required | Description |
---|---|---|---|
id | string | Yes | The unique identifier of the candidate |
Sample Request & Response
GET
/candidates/{id}Sample Request
Headers:
{
"Authorization": "Bearer <YOUR_API_KEY>"
}
Path Parameters:
{
"id": "string (required) - The unique identifier of the candidate"
}
Sample Response (200)
{
"id": "example_string",
"createdAt": "2025-07-26T12:00:00Z",
"updatedAt": "2025-07-26T12:00:00Z",
"organizationId": "example_string",
"memberId": "example_string",
"name": "example_string",
"firstName": "example_string",
"lastName": "example_string",
"email": "example_string",
"phone": "example_string",
"profiles": [
{
"__id": "example_string",
"network": "example_string",
"username": "example_string",
"url": "example_string"
}
]
}