Get meeting requests and events for a specific day for a registered user using the microsoft Graph API in UWP

I am working on a UWP app that receives data from Microsoft Graph API

. I need to get a list of all appointments scheduled for the day for a registered user. I am authenticating a user from Azure AD and I am setting up multiple appointments / events as per mine timezone

.

I only want to receive data for the current user based on his time geography and geography on the same day.

Example: Currently in India, if I set an appointment at 7pm IST, it will convert to its current timezone and show.

I am using this API

string _graphAPIEndpoint = "https://graph.microsoft.com/v1.0/me/events?$select=subject,body,bodyPreview,organizer,attendees,start,end,location" (https://graph.microsoft.com/v1.0/me/events?$select=subject,body,bodyPreview,organizer,attendees,start,end,location') ;

      

but I want to restrict his meetings based on his elapsed login times, which shouldn't be displayed. Can anyone look into this

+3


source to share


1 answer


This is where you want to use



0


source







All Articles