Forum Discussion

Inkey_Solutions's avatar
Inkey_Solutions
Copper Contributor
Oct 12, 2022

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

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

 

 

Resources