Return to developer resources

Team mates in office

Users In Office

Find all users expected to be in office.

EndPoint

https://wiggledesk.com/api/users_in_office/

Overview

This endpoint returns all bookings happening today in your organisation. This can be helpful to quickly identify where people currently are expected to be.

Team mates in office

Behaviour

The API endpoint listens for GET requests, identifies which users are in the same organisation as the requester and returns data on all users bookings happening during the day of the request.

Before We Begin

First grab your API key from your profile page. If you don't see it, you'll need to double check with a WiggleDesk Admin that your account has been given access and that the steps outlined in our 'Getting started' page have been followed.

WiggleDesk's API can be tested with httpie which is a basic http client written in Python.

You can install httpie using pip:

pip install httpie

Access API Via Code

You can get a list of all your upcoming bookings by running this command in your command line / terminal (remember to swap out 'YOUR_SECRET_TOKEN' with your secret token:

http https://wiggledesk.com/api/users_in_office/ "Authorization: token YOUR_SECRET_TOKEN"

Response

It should return a json array like this (Assuming there are any current bookings):

HTTP/1.1 200 OK
“count": 3,
"next": null,
"previous": null,

"results":
[
{

"email": "william@test.com",

"username": "William"
},
{

"email": "susam@test.com",

"username": "Susan"
},

{

"email": "benjamin@test.com",

"username": "Benjamin"
},
]

Access API Via ZAPIER

Coming Soon

Published June 27, 2022

Tagged API


What is WiggleDesk?

WiggleDesk is the easiest way to roll out and manage hybrid working in your organisation.

Get set up in 10 minutes, more info here.