curl --request GET \
--url https://{host}/work-locations/public/api/work-locations \
--header 'Authorization: <authorization>'{
"count": 123,
"items": [
{
"id": 123,
"name": "<string>",
"type": "Office",
"isActive": true,
"office": {
"capacity": 123,
"showAreas": true,
"areas": [
{
"id": 123,
"name": "<string>",
"capacity": 123,
"floorKey": 123
}
],
"floors": [
{
"key": 123,
"name": "<string>",
"position": 123
}
]
}
}
]
}Query all available work locations
curl --request GET \
--url https://{host}/work-locations/public/api/work-locations \
--header 'Authorization: <authorization>'{
"count": 123,
"items": [
{
"id": 123,
"name": "<string>",
"type": "Office",
"isActive": true,
"office": {
"capacity": 123,
"showAreas": true,
"areas": [
{
"id": 123,
"name": "<string>",
"capacity": 123,
"floorKey": 123
}
],
"floors": [
{
"key": 123,
"name": "<string>",
"position": 123
}
]
}
}
]
}API key. Value must be formatted like so: lucca application={api_key}.
Page number
x >= 1Page size
1 <= x <= 1000Return total items count (across all pages).
count Was this page helpful?