Configure Staff API
How to Configure the Staff API on PlaceOS
The Staff API gives PlaceOS the ability to interact with Calendar and User Resources.
To integrate room booking into your existing calendar environment you must configure Staff API.
Once you have configured Staff API, PlaceOS can:
Create
Edit
Update
Delete Calendar events in Microsoft 365 or Google Workspace.
To show room status on floor maps, the PlaceOS Calendar driver must also be configured.
To enable room bookings, the PlaceOS Bookings driver must be also configured.
Prerequisites
Access on Microsoft Azure or Google Cloud Console & Workspace to create apps and API permissions
Administrator access to your PlaceOS Backoffice
Configure Providers
To enable Staff API you must complete the necessary configuration in your cloud provider.
Instructions for Microsoft 365 and Google Workspace are below.
Microsoft Azure (365)
To use Staff API with 365 you will need to create an Application in App Registration.
You may have already completed this step if you have configured PlaceOS for Microsoft 365 User Authentication.
If you have already created an app, you ca skip to Grant Graph API Permissions.
If not, you will need to create a new App Registration on Azure.
Create Azure App
Navigate to the Azure Portal
Log in and select the correct Subscription for your application
Navigate to App Registrations
Select New Registration
Enter the required information
Name it and select the appropriate "Support Account types" (typically "Single tenant")
Optionally paste the PlaceOS
Assertion URL
Register the app
Grant Graph API Permissions
You will now need to grant Graph API Permissions on your App.
Select the app you would like to give permissions
Click API Permissions
Click Add Permission
Click Microsoft Graph
Select Delegated permissions
Grant API Access to the following resources (or whichever resources are approved by the Azure administrator):
openid
offline_access
Calendars.ReadWrite
Calendars.ReadWrite.Shared
Group.Read.All
User.Read
User.Read.All
Contacts.Read
Place.Read.All
Click Add Permissions
Grant Admin Consent for all the new permissions
Generate Azure API Secret
You will now need to create the secret to allow PlaceOS Staff API to Authenticate.
Navigate to Certificates & Secrets
Select New client secret
Give your secret a description e.g.
PlaceOS Prod App Secret
and click AddReturn to the App Overview
Google Workspace
To use Google APIs you will need a server to server OAuth2 application configured.
This involves creating a service account that PlaceOS will use for authentication.
The service account can “act as” staff in the organization.
The service account can perform actions on behalf of a user, such as booking meeting rooms.
For further information see Creating and Managing Service Accounts.
Configure Google Cloud API Project
Go to Google Cloud Console
Select
Enable APIs and Services
Search for and enable the following SDK:
Admin SDK (for staff directory)
Google Calendar API
Google Drive API (for attachments)
For limiting access to a subset of the organization, you may also want to enable:
Marketplace SDK (not Marketplace API)
Drive API
Configure the Service Account
Under APIs & Services, navigate to Credentials
Create a new Service Account
You can ignore the next steps in the wizard, click
Done
to return to the list of service accountsThis will save a JSON File to your computer, you will need this information to configure the service.
Click Save
Configure Service Account Permissions
If you want to configure this application for use in a subset of the organization, ignore this step.
Continue with the steps to “Create a marketplace application”
Open the JSON File that we saved in the previous step
Copy the
client_id
Navigate to Google Workspace Admin
Select
Security
Scroll down to
API Controls
Select
Manage Domain Wide Delegation
Click
Add new
and enter theclient_id
you extracted earlierAdd the following API Scopes:
https://www.googleapis.com/auth/calendar
https://www.googleapis.com/auth/admin.directory.user.readonly
Click
Authorize
Ensure you enable API Access by going to
Security -> API Controls
Select
Trust internal, domain owned apps
The scope https://www.googleapis.com/auth/drive.file
allows the application to add attachments to calendar events, such as QR codes.
It does not allow for reading or modifying any files not created by the application.
Creating a Marketplace Application
This step applies to organizations where a specific region or department (OU) will be using the application.
This step is not applicable to most organizations.
On Google Cloud Console navigate to the API Services Dashboard
Select the
Configuration
tabUpload icons as required
A Terms of Service URL is also required, you can set this to your companies homepage
Enter the following scope URL:
https://www.googleapis.com/auth/calendar
https://www.googleapis.com/auth/admin.directory.user.readonly
https://www.googleapis.com/auth/drive.file
Fill in the details and icons for the Drive Application
Once completed, return to the marketplace application form
Ensure you set visibility to
My Domain
Click
Save Changes
Deploy the marketplace application to the organizational unit that will be using the application.
Follow the steps to Install a Google Workspace Marketplace App in your Domain.
Configure Staff API on PlaceOS
You will now need to enter the information obtained from the App Registration and API Permissions.
To complete this step, you will need the following information:
Microsoft Azure (all information obtained from Azure App Register)
Client ID
Tenant ID
Secret
Google Workspace
Domain
- this is the domain your users use when logging into GoogleService Account Email
- service account user created in previous stepsScopes
- what Google services are we accessing (calendar, admin groups, etc)Private Key
- available via the JSON downloaded from Google Cloud ConsoleService User
- a Google Workspace user with required permissions to read resource calendars/user informationUser Agent
- user defined and helps with looking at Google logs to see application actions
Open PlaceOS Backoffice and login as an administrator
Navigate to the Admin Tab
Select Staff API
Select the Domain you want to configure
Click Add Tenant
Enter the information required
Save
Test Staff API Configuration
The easiest way to test the Staff API Configuration is using the PlaceOS Calendar Driver or Microsoft API Calendar Driver for 365 Delegation.
The staff-api
logs will show any errors in configuration.
We can view these logs by connecting to the server and running docker logs --tail 99 -f staff-api
.
An example log with an authentication error to Microsoft 365:
Last updated