You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To get a user's calendar in a specific calendarGroup. GET /users/{id | userPrincipalName}/calendarGroups/{id}/calendars/{id}/calendarView?startDateTime={start_datetime}&endDateTime={end_datetime}
If I do same behavior via c# client.Users[idOrEmail].CalendarGroups[group.ID].Calendars[calendarId].CalendarView.GetAsync();
I will got "This request requires a time window specified by the query string parameters StartDateTime and EndDateTime." exception
But Microsoft.Graph.Users.Item.CalendarGroups.Item.Calendars.Item.CalendarView.CalendarViewRequestBuilder.CalendarViewRequestBuilderGetQueryParameters Class do not have StartDateTime and EndDateTime options
The text was updated successfully, but these errors were encountered:
I'm using 5.37.0 graph sdk
To get a user's calendar in a specific calendarGroup.
GET /users/{id | userPrincipalName}/calendarGroups/{id}/calendars/{id}/calendarView?startDateTime={start_datetime}&endDateTime={end_datetime}
If I do same behavior via c#
client.Users[idOrEmail].CalendarGroups[group.ID].Calendars[calendarId].CalendarView.GetAsync();
I will got "This request requires a time window specified by the query string parameters StartDateTime and EndDateTime." exception
But Microsoft.Graph.Users.Item.CalendarGroups.Item.Calendars.Item.CalendarView.CalendarViewRequestBuilder.CalendarViewRequestBuilderGetQueryParameters Class do not have StartDateTime and EndDateTime options
The text was updated successfully, but these errors were encountered: