An API that connects multiple Microsoft services, enabling data access and automation across platforms
Hi, Ritik Joshi (sorry, hard to find the exact person to at)
I believe that you do this by amending a meeting participant's 'role' type in the 'participants/attendees' key/value pair in the parent event:
https://learn.microsoft.com/en-us/graph/api/resources/onlinemeeting?view=graph-rest-1.0
Here's the breakdown of a 'meeting participant' in graph:
https://learn.microsoft.com/en-us/graph/api/resources/meetingparticipantinfo?view=graph-rest-1.0
Ensure that you change the 'role' value to "coorganizer" as per this learn link would suggest. :)
| Label | Value |
|---|---|
| Request Type | PATCH |
| URL | https://graph.microsoft.com/v1.0//me/onlineMeetings/{meetingId} |
| Headers | 'Content-Type': "application/json" |
| Body | See below |
{
"participants": {
"attendees": [
{
"upn": "******@domain.tld",
"role": "coorganizer",
"identity": {
"application": null,
"device": null,
"user": {
"id": "i-represent-a-microsoft-guid",
"displayName": null,
"tenantId": "i-represent-a-microsoft-guid"
}
}
}
]
}
}