I'm using MS Graph APIs to manage booking businesses. I follow the documentation provided by Microsoft at this link here.
My knowledge of Office 365 and its products is basically limited but I'm trying to see if the following is actually possible.
What I need is:
To list all the booking business to which a specific staff member has assigned. For example, to have an endpoint like: /bookingBusinesses/{staff_member_id}/bookings
.
At the moment, there is an API but the other way around, that is, to list the staff members of a specific booking. Here is it: /bookingBusinesses/{id}/staffMembers
.
What I have been trying out or digging into:
I have been Googling around and also digging into Azure AD and Exchange Online to see if there is a workaround for this either using PowerShell or just some other set of APIs. Also trying to get my head around the difference between a user
and a booking business
object, since, once you create a new booking it gets added as a new user in Azure AD and Office 365 Admin Center. Anyhow, I couldn't find anything helpful by now.
Honestly, I'm not really optimistic that there is a way to achieve the above but would appreciate helpful thoughts.