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
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."
}