Meeting Edit deep link not working - Need to edit meeting using the URL

Copper Contributor

Hi,

 

We have created the MS Teams Meeting using the Graph API in C# as mentioned below. We have stored the EVENT_ID and wanted to generate Edit Meeting Link based on newly created meeting.

 

var getEventScheduleRespose = graphServiceClient.Users["UserPrincipalName"].Events
.Request()
.Header("Prefer", "IdType = 'ImmutableId', outlook.timezone = 'UTC'")
.AddAsync(meetingEventObject);

 

The meeting has been created successfully by using the aforesaid code, but when generating Edit Meeting Link/URL it's causing issue. The below URL is working for Meeting Organizer user but not working for the meeting attendees (i.e. TO recipient of the meeting). 

 

URL: 

https://teams.microsoft.com/_#/scheduling-form/?eventId=[EVENT_ID]&opener=1&providerType=0&navCtx=event-card-peek&calendarType=User

Error message: "This meeting is no longer available, or you don't have permission to view it."

 

Please help us to fix this issue. Please let us know if you have any queries.

 

Thank you

 

 

2 Replies
@Inkey_Solutions- Thanks for reporting your issue.
We will investigation this issue and get back to you.

@Inkey_Solutions- When event update that removes an attendee specified as a member of a distribution list sends a meeting update to all the attendees. may be that causes the issue while user is joining the meeting.

Reference Document-https://learn.microsoft.com/en-us/graph/api/event-update?view=graph-rest-1.0&tabs=csharp#notes-for-u...