Candidate List
This API is to get candidate list. This is an authendicated API so we need to pass bearer token in request header to access the data.
Headers
-
application/json
-
application/json
GET
/candidate
curl \
-X GET https://api-console.logezy.co/v1/candidate \
-H "Content-Type: Bearer your-access-token" \
-H "Accept: application/json"
Response examples (200)
{
"data": [
{
"id": 1,
"jobs": [
{
"id": 1,
"name": "Nurse"
},
{
"id": 11,
"name": "Cleaners"
}
],
"full_name": "Seby P",
"last_name": "P",
"first_name": "Seby",
"mobile_number": "+44 7446 960179",
"candidate_code": "DEM73CA1"
}
],
"status": "success",
"message": "Candidates list retrieved successfully."
}