Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,225 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a graph user, I would like to create a MeetingParticipantInfo, how to do that?
Any help is greatly appreciated.
@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.