Job List

GET /job/list

This API is to get job list. This is an authendicated API so we need to pass bearer token in request header to access the data.

Headers

Query parameters

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
GET /job/list
curl \
 -X GET https://api-console.logezy.co/v1/job/list \
 -H "Content-Type: Bearer your-access-token" \
 -H "Accept: application/json"
Response examples (200)
{
  "status": "success",
  "data": [
    {
      "id": 10,
      "name": "Cleaner"
    },
    {
      "id": 11,
      "name": "Cleaners"
    }
  ],
  "message": "Jobs retrieved successfully."
}