While it's impossible to list online meetings for a user, we try to do this by listing all calendar items of the user and checking there which one is an online meeting.
The problem here is that we are returning calendar items as result. Because of this, users are not able to use the id of the result in other teams meeting ... commands because they expect a meeting ID instead of a calendar ID.
Let's change the output type of this command so it returns a list of online meetings (like teams meeting get) instead of a list of calendar events. This is considered a breaking change because the response will look different.
PS: Let's use Graph batching to retrieve all meetings.
While it's impossible to list online meetings for a user, we try to do this by listing all calendar items of the user and checking there which one is an online meeting.
The problem here is that we are returning calendar items as result. Because of this, users are not able to use the
idof the result in otherteams meeting ...commands because they expect a meeting ID instead of a calendar ID.Let's change the output type of this command so it returns a list of online meetings (like
teams meeting get) instead of a list of calendar events. This is considered a breaking change because the response will look different.PS: Let's use Graph batching to retrieve all meetings.