how to create online MeetingParticipantInfo from graph user

SnekithanSOJ 1 Reputation point
2021-03-26T07:06:57.823+00:00

I have a graph user, I would like to create a MeetingParticipantInfo, how to do that?
Any help is greatly appreciated.

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,225 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Fiona Matu 86 Reputation points Microsoft Employee
    2021-03-29T08:31:33.67+00:00

    @SnekithanSOJ an example of an attendee's MeetingParticipantInfo JSON representation when creating an online meeting would be something like:

    "attendees": [{  
     "type": "required",  
     "status": {  
     "response": "none",  
     "time": "0001-01-01T00:00:00Z"  
     },  
     "emailAddress": {  
     "name": "Pradeep Gupta",  
     "address": "PradeepG@contoso.onmicrosoft.com"  
     }  
     }]  
    

    Refer to this documentation for more info on meetingParticipants resource type.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.