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

  • Content-Type string Required

    application/json

  • Accept string Required

    application/json

Query parameters

  • regions string

    Id of region to filter

  • business_units string

    Id of business units to filter

  • clients string

    Id of clients to filter

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • status string
    • data array[object]
      Hide data attributes Show data attributes object
      • id number
      • name string
    • message string
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."
}