# List the existing location workload levelling sets Retrieves detailed information on all location workload levelling sets, limited to at most 100 items. Endpoint: GET /settings/location-workload-levelling-sets Version: 1.5.0 Security: clientCredentials ## Query parameters: - `cursor` (string) Cursor of the page to retrieve. - `limit` (integer) The maximum amount of location workload levelling sets that should be returned in the response Example: 100 ## Response 200 fields (application/json): - `data` (array, required) Subset of Location Workload Levelling Sets matching the provided query, limited to the limit specified in the request. - `data.business_id` (string) The identifier for this location workload levelling set Example: "86b54c9d-21d7-4b37-af3d-25f03886153b" - `data.name` (string) The name of the location workload levelling set Example: "Weekday" - `data.settings` (array) - `data.settings.location_business_ids` (array) List of business IDs of locations this setting applies to Example: ["LOC_001","LOC_002"] - `data.settings.loading_zones` (array) List of loading zones available at the locations - `data.settings.loading_zones.cost` (number) The cost associated with using this loading zone Example: 10 - `data.settings.minimum_buffer_duration` (string) The minimum buffer duration between vehicles using the same loading zone. Must be an ISO-8601 compliant Duration string. Example: "PT30M" - `data.etag` (string) - `cursor` (object, required) - `cursor.self` (string) The cursor for this page. Not present when the result contains no data. Example: "c2VsZl9fcGFnZQ" - `cursor.prev` (string) The cursor for the previous page. Not present when fetching data for the first page. Example: "cHJldmlvdXNfX3BhZ2U" - `cursor.next` (string) The cursor for the next page. Not present when fetching data for the last page. Example: "bmV4dF9fcGFnZQ" ## Response 401 fields