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
-
application/json
-
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
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)
{
"data": [
{
"id": 10,
"name": "Cleaner"
},
{
"id": 11,
"name": "Cleaners"
}
],
"status": "success",
"message": "Jobs retrieved successfully."
}