I'm using the Microsoft Graph REST Beta API call:
POST https://graph.microsoft.com/beta/bookingBusinesses/{id}/customers
With body payload:
{
"displayName": "User Name",
"emailAddress": "email%40eventhorizon.llc"
}
I get a 201 response…
I am trying to call the Microsoft Graph API, in an automated way using application permissions, to extract the Microsoft Bookings data.
The AAD app has the Bookings.Read.All permissions as explained…
when I trying to create Microsoft Booking Appointment through Graph API
Only Post Request Not working .
GET , PATCH , DELETE Reuqest are working fine
through postman
same post request is working find on graph explorer platform . but not on posmant…
My use case:
I need to create a lot of bookings calendars, perhaps as much as ca. 200, for a company. These calendars will stand for different regions. The company has a call center where the center personnel needs to locate the correct region and…
I'm trying to use the "Booking Business" endpoint in Microsoft Bookings through the graph API, but the documentation is not very clear on how to get it working. I am authenticating correctly, and everything appears to work, but I can't seem to…
I'm hosting multi Day events trough Microsoft Bookings. The events are general not available unless i set "Availability during these dates:" for specific date ranges. I played around with the Graph REST API but i couldn't find a way to set these…
Microsoft Graph API Find meeting times the 1st attendee availability status showing free but for second attendee status showing unknown how to show the availability status as free if both attendees are free?
note: while passing two attendees in the…
We are using Microsoft Bookings to schedule events for our Customer Service (multiple users).
Therefor we would like to get an event when a new appointment is scheduled and pass it to Teams, our ASP.NET Web App or Power Apps.
Is there any…
Looking through the graph api and I can list appointments with the start time and end time in the calendars time-zone.
Can I find the calendar's time-zone without looking at an existing appointment? I would expect it to be in the …
We have been extensively using graph API's and Bookings and have a request for scheduling group sessions through Bookings. Currently, we think we can only do this by recursively generating a booking for each person. We would like to be able to…
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…
I am trying to create an app that runs from an AWS lambda that acts as a middle man for customers wanting to sign up for a booking using Microsoft Bookings. Following the documentation I am able to generate an access token for Graph, but I get an…
I would like to use MS Graph Booking API for publicly available application.
Users are going to login with identity providers but obviously are not in our Azure AD.
Per my understanding, it's possible to access this API only with delegated AD user…
I have a simple ASP.Net web application consist of .aspx web from hosted on azure as cloud service. In my application there is no user login.
I want to connect with Microsoft Graph API and and to use Microsoft Bookings API to get the BookingBusiness…