Get Candidate Profile
This endpoint allows you to get a candidate profile using a user's id and their valid JWT
Authorizations
Path parameters
uidanyRequired
The UID of the candidate
Responses
200
Success
application/json
404
Candidate Profile not found
get
GET /api/v1/candidateProfile/{uid} HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"uid": "text",
"orgId": "text",
"orgAlias": "text",
"firstName": "text",
"lastName": "text",
"email": "text",
"phone": "text",
"bio": "text",
"dpUrl": "text",
"yoe": "text",
"country": "text",
"city": "text",
"state": "text",
"openToRoles": [
"text"
],
"skills": [
"text"
],
"websiteLink": "text",
"linkedInLink": "text",
"githubLink": "text",
"otherLink": "text",
"introLink": "text",
"workExperiences": [
{
"title": "text",
"company": "text",
"fromDate": "text",
"toDate": "text",
"tillNow": true,
"experience": "text"
}
],
"projects": [
{
"title": "text",
"description": "text"
}
],
"education": [
{
"institutionName": "text",
"courseName": "text",
"passYear": "text",
"score": "text"
}
],
"achievements": [
{
"title": "text",
"description": "text"
}
],
"pronouns": "text",
"race": "text",
"gender": "text",
"createdAt": "text",
"updatedAt": "text"
}
Last updated