Candidate List

GET /candidate

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

Responses

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)
{
  "status": "success",
  "data": [
    {
      "id": 1,
      "first_name": "Seby",
      "last_name": "P",
      "full_name": "Seby P",
      "candidate_code": "DEM73CA1",
      "mobile_number": "+44 7446 960179"
    }
  ],
  "message": "Candidates list retrieved successfully."
}