Work-locations
List workLocations
Organization Structure API
- Axis-sections
- Departments
- Legal-Units
- Establishments
Core HR API
- Employees Directory
- Guides
Cleemy Expenses API
- Expense-temp-items
- Expense-claims
- Expense-claim-items
Timmi Absences API
- Leaves
- Leave-requests
- Sick-leaves
- Imports
- Guides
Timmi Office API
- User-locations
- Work-locations
Timmi Project API
- Clients
- Projects
- Project services
- Organizations
- Financials
Timmi Settings API
- UserDates
- Workcycle-exceptions
- Working-time-arrangement
Timmi Timesheet API
- Time-entries
- Timesheets
- Reports
- Guides
Pagga Mealvouchers API
- Statutory
- Computation
Pagga Remuneration API
- Fixed-natures
- Fixed-items
- Variable-natures
- Variable-items
Poplee Training API
- Training-demands
- Realized-trainings
Work-locations
List workLocations
Query all available work locations
GET
/
work-locations
/
public
/
api
/
work-locations
curl --request GET \
--url https://{account}-{sandboxName}.sandbox.{server}.luccasoftware.com/work-locations/public/api/work-locations/public/api/work-locations
{
"count": 123,
"items": [
{
"id": 123,
"name": "<string>",
"type": "Office",
"office": {
"capacity": 123,
"showAreas": true,
"areas": [
{
"id": 123,
"name": "<string>",
"capacity": 123,
"floorKey": 123
}
],
"floors": [
{
"key": 123,
"name": "<string>",
"position": 123
}
]
},
"isActive": true
}
]
}
Query Parameters
Page number
Required range:
x > 1
Page size
Required range:
1 < x < 10
Return total items count (across all pages).
Available options:
count
Response
200
application/json
OK
The unique id of the WorkLocation.
The name of the WorkLocation
Type of WorkLocation. It can be physical, like an office, but also abstract, RemoteWork is for telecommuting which has specific rules in Timmi Office, and Other allows to suggest any other locations, like on the go.
Available options:
Office
, RemoteWork
, Other
Indicates whether the location is currently active
The office details, non-null if the location type is "Office"
The number of people the office can accommodate
Whether to show specific areas within the office
A office can be divided into different areas defined by a name and capacity
Was this page helpful?
curl --request GET \
--url https://{account}-{sandboxName}.sandbox.{server}.luccasoftware.com/work-locations/public/api/work-locations/public/api/work-locations
{
"count": 123,
"items": [
{
"id": 123,
"name": "<string>",
"type": "Office",
"office": {
"capacity": 123,
"showAreas": true,
"areas": [
{
"id": 123,
"name": "<string>",
"capacity": 123,
"floorKey": 123
}
],
"floors": [
{
"key": 123,
"name": "<string>",
"position": 123
}
]
},
"isActive": true
}
]
}