Warehouse Overview
Overview
GET /v1/analytics/users/basic/
GET /v1/analytics/locations/basic
GET /v1/analytics/desks/basic
GET /v1/analytics/change-log/user/basic
GET /v1/analytics/user-booking-attendance/basic
GET /v1/analytics/presence/basic
Authentication
Rate limiting
Data size limits
Getting Started
apiKeyId
and apiSecret
with your values. It is best to pipe the output into a file rather than the terminal, especially when extracting large datasets.
locations.json
. Open that file and you will see information similar to the below:[
{
"locationId": "28992537-ed23-41bc-a322-635445445644",
"locationName": "Headquarters Office",
"address": "San Francisco, California, USA",
"status": "active"
},
{
"locationId": "e9347c3d-9ee5-4aaa-8a75-e8132f150bac",
"locationName": "Melbourne",
"address": "500 South Street, Melbourne, Australia",
"status": "active"
}
]
Best practices
users
, locations
and desks
and then make calls to the subsequent APIs utilizing those values.Bookings & Attendance
and Presence Details
APIs, incremental loading of the data should be utilized.Use cases
Backfilling of historical data into a warehouse
1.
users
, locations
and desks
endpoints to get up-to-date information on those entities and store the results in your warehouse tables.2.
location
, querying the Bookings & Attendance
endpoint to retrieve the details.3.
Bookings & Attendance
endpoint can retrieve at most 30 days of data. Query the endpoint for 30-day ranges, retrieving the data until you have backfilled all of your data, storing this data in a table.4.
users
table with the Bookings & Attendance
table in your warehouse using the userId values.5.
Presence
endpoint contains more details about individual presence events, which are not typically required for historical analysis, but it can be retrieved in 30-day ranges as well if needed and stored in a separate table.Incremental loading of historical data
1.
users
, locations
and desks
endpoints to get up-to-date information on those entities and store the results in your warehouse tables. This data will slowly change as users are added and removed, and offices are updated. This should be refreshed.2.
Bookings & Attendance
endpoint for the date range since the last update, storing this data in a table.3.
users
table with the Bookings & Attendance
table in your warehouse using the userId values.Querying of future data
Bookings & Attendance
endpoint can be used to query future booking information. For example, this is useful if you are sharing the booking information on your company intranet.1.
users
to get up-to-date details on the users. This should be done periodically to refresh the user information, typically once a day to once per week.2.
Bookings & Attendance
endpoint for the future date range (typically 1-2 weeks) every 30-60 minutes.Investigating user's booking details
User changelog
endpoint. This will contain a line for every user action that has been taken related to bookings.1.
users
to get up-to-date details on the users. Find the userId of the user in question. Alternatively you can get the userId
by looking at the URL of the user's profile on the web app.2.
userId
and the date range under investigation to submit a request to the User chanlog
endpoint.Troubleshooting presence
Bookings & Attendance
endpoint contains details on user attendance including presence, but it does not show each individual presence event. To get a deep level of presence detail, use the Presence
endpoint. This will show each presence event, and what source
the presence event was reported by.Modified at 2025-04-03 13:54:25