Microsoft Graph find channel meeting organizer

KThomas 21 Reputation points
2022-02-08T20:02:00.623+00:00

Trying to pull attendance reports from other users, however i need to know the User ID of the meeting organizer for multiple steps.

I have found the most reliable method of pulling users calendar events to be with this:
/users/{id | userPrincipalName}/calendarView?startDateTime={start_datetime}&endDateTime={end_datetime}

And I can find meeting organizer and JoinURL in those results:
"organizer": {
"emailAddress": {
"name": "XXX XXXXX",
"address": "XXXXano@HarrisburgU.edu"
}
"onlineMeeting": {
"joinUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting........."
}

Which is perfect for then running the following step:
/users/{userId}/onlineMeetings?$filter=JoinWebUrl%20eq%20'{joinWebUrl}'

And then getting the meeting ID:
/users/{userId}/onlineMeetings/{meetingId}

And then getting the attendance reports.

Here is my problem, when the meeting was created from a channel, the meeting organizer is set to the group email address:
"organizer": {
"emailAddress": {
"name": "XX Class Test",
"address": "XXClassTest@my.harrisburgu.edu"
}
When I try to pull meeting ID using the OID of the group and the JoinURL, it fails. It only works if I know the OID of the meeting organizer.

Is there an easy method of getting the meeting organizer of a channel created meeting?

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
11,176 questions
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
2,989 questions
{count} votes

2 answers

Sort by: Most helpful
  1. ChetanSharmamsft 1,026 Reputation points Microsoft Vendor
    2022-03-04T13:37:57.547+00:00

    For more visibility, Adding answer from the comment section:

    There is no way to get actual organizer ID.
    Could you please raise a user voice here:
    https://microsoftteams.uservoice.com/forums/555103-public/filters/new

    0 comments No comments

  2. Mike Chlipala 1 Reputation point
    2022-08-16T20:47:16.05+00:00

    @ChetanSharmamsft Is there any other way to bump this? The uservoice url isn't valid anymore.