Forum Discussion
How to set Teams meeting co-organizer(s) using the Graph API?
Have you found a way? I am having this issue now and I don't know how to add co-organizers to meeting through graph api.
I am using the https://graph.microsoft.com/v1.0/me/events/ endpoint
This is my json code:
{
'subject': 'Test meeting',
'body': {
'contentType': 'HTML',
'content': 'Group code: Hello'
},
'start': {
'dateTime': '2023-02-25T12:30',
'timeZone': 'Europe/Sofia'
},
'end': {
'dateTime': '2023-02-25T13:30',
'timeZone': 'Europe/Sofia'
},
'attendees': [
{
'status': {
'response': 'accepted',
'time': '0001-01-01T00:00:00Z'
},
'emailAddress': {
'address': 'email address removed for privacy reasons',
'name': 'Elena'
},
'type': 'required'
}
],
'organizer': {
'emailAddress': {
'address': 'email address removed for privacy reasons',
'name': 'Organizer'
}
},
'allowNewTimeProposals': true,
'isOnlineMeeting': true,
'onlineMeetingProvider': 'teamsForBusiness'
}
It successfully makes a meeting and adding the participants to it, but I need to assign the participants a role 'co-organizers'. Please help!
- samb2180Jul 24, 2023Brass ContributorIf you are creating the onlinemeetings via Event endpoint, just retrieve the joinweburl of the event created and use the onlinemeetings endpoint to patch the participants and set the coorganizers as detailed in documentation. It's working fine for me.
https://learn.microsoft.com/en-us/graph/api/onlinemeeting-update?view=graph-rest-1.0&tabs=http - JkosoApr 13, 2023Copper Contributor
Hi,
Any update on this item?