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 \
 --request GET 'https://api-console.logezy.co/v1/job/list' \
 --header "Content-Type: Bearer your-access-token" \
 --header "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "id": 10,
      "name": "Cleaner"
    },
    {
      "id": 11,
      "name": "Cleaners"
    }
  ],
  "status": "success",
  "message": "Jobs retrieved successfully."
}