Hi @Hariharan Rajkumar [external]
You can get the event set first, and then use that 'joinUrl' to filter the event set to get the target event.
For example:
try {
var result = await graphClient.Users["{user id}"].Events.GetAsync();
var joinUrl = "{joinUrl}";
if (result != null && result.Value != null)
{
foreach (var events in result.Value)
{
if (events.OnlineMeeting != null && events.OnlineMeeting.JoinUrl != null && events.OnlineMeeting.JoinUrl.Equals(joinUrl))
{
Console.WriteLine(events.Id);
}
}
}
else
{
Console.WriteLine("No events found.");
}
}
catch (ODataError odataError)
{
Console.WriteLine(odataError.Error.Code);
Console.WriteLine(odataError.Error.Message);
}
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.