I think there might be a bug in the following API endpoint to get calendar events for different meeting rooms: https://graph.microsoft.com/beta/me/calendar/getSchedule. I know it is still beta and I see some inconsistency in returned data for meetings:
Testing scenario when the returned data changes: Logged in user: Bogdan C.
- Add a meeting
- Query the API and see
meeting title
assubject
- Add another meeting
- Run again the query and see
username
assubject
for the first meeting.
As a test scenario: request body:
{
schedules: ['room1'],
//..other params
}
As a part of the response:
{
"scheduleId": "room1",
"scheduleItems": [
{
// first meeting added
...
"subject": "**Bogdan C.**", // bad
"location": "Room 1",
},
{
...
"subject": "**Design meeting**", // good
"location": "Room 1",
}
]
}
Any idea about what might be wrong?
Thanks