How to find Event using the joinUrl

Copper Contributor

My users create Calendar Invites (either via teams or outlook) and store the JoinUrl in a Sharepoint List for later reference.

 

My goal is to programmatically find the event that was created with this JoinUrl.


While I can easily locate the corresponding online meeting using graph api (filtering on JoinWebUrl), I haven't found a way to locate the corresponding Calendar Event. 

 

I have tried variations of this with no success.

https://graph.microsoft.com/v1.0/users/{userid]/events?filter=onlineMeeting eq '{meeting join url}'
I know that joinUrl sit within onlineMeeting. I even recall, having receid an error messafge saying onlineMeeting cannot be searched.

Any ideas to accomplish this task or better way to proceed are welcome !


PS.
Working with other fields, I was able to trace back the event using meeting subject and createdDateTime from the online event response in the filter clause. For instance this worked...Just wondering if can use JoinUrl directly...

https://graph.microsoft.com/v1.0/users/{useirid}/events?$filter=subject eq 'My Meeting Subject' && createdDateTime eq '2021-09-20T13:11:29.721478Z'

0 Replies