for getting participant info in MS teams using Microsoft graph API, I got the API but I am not getting what is {id} in it ??

Nikita Pandey 146 Reputation points
2020-08-28T07:39:47.467+00:00

getting participant info using below API
:- https://learn.microsoft.com/en-us/graph/api/participant-get?view=graph-rest-1.0&tabs=http

But I am getting what is this two ids in the API
GET /communications/calls/{id}/participants/{id}

Please help me out on this as soon as possible

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,454 questions
0 comments No comments
{count} votes

Accepted answer
  1. Saurabh Sharma 23,671 Reputation points Microsoft Employee
    2020-08-28T18:34:40.543+00:00

    @Nikita Pandey No, the api endpoint is not correct to get the participant info. You need to call the Microsoft event api to get all participants of the meeting. Here is an example if you want to get only attendees -

    https://graph.microsoft.com/v1.0/me/events/AAMkADBhZDBlZDJmLTgzY2EtNGZiYi1hZjJlLTUyOTZhMThkMGQyZgBGAAAAAAD-t-9GXYQNRogb58-hfdKLBwCui86sWT5YTZ5oyIp9eiMgAAAAAAENAACui86sWT5YTZ5oyIp9eiMgAAAG7tD6AAA=?$select=attendees  
    

    21331-image.png

    Please refer to the documentation for details.

    ----------

    Please do not forget to "Accept the answer" wherever the information provided helps you to help others in the community.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Eduard 6 Reputation points
    2020-12-22T14:49:58.933+00:00

    @Saurabh Sharma your answer apply only for outlook meetings not online teams meetings. In our case, (and i think it's the same for @Nikita Pandey ) we want to get who is currently connected to a specific online meeting.

    Do you think there is any way to get the AttendanceList csv that is avalible in teams user interface but using graph API?

    0 comments No comments