Get Available candidate statuses

GET /candidate/status-list

Headers

Responses

  • 200 application/json

    OK

GET /candidate/status-list
curl \
 -X GET https://api-console.logezy.co/v1/candidate/status-list \
 -H "Accept: string" \
 -H "Content-Type: string"
Response examples (200)
{
  "status": "success",
  "data": [
    {
      "id": 1,
      "title": "Active"
    },
    {
      "id": 2,
      "title": "Pending"
    },
    {
      "id": 3,
      "title": "Inactive"
    }
  ]
}