Community
3 Topics12002 - WINHTTP_CALLBACK_STATUS_REQUEST_ERROR
Getting the below error WINHTTP_CALLBACK_STATUS_REQUEST_ERROR while calling the microsoft graph api with call record Id to fetch callrecords sessions. do { IList<Microsoft.Graph.QueryOption> queryOption = new List<Microsoft.Graph.QueryOption>(); if (nextPageRequest != null) { queryOption = nextPageRequest.QueryOptions; } var callRecordSession = AsyncHelpers.RunSync<ICallRecordSessionsCollectionPage>(() => graphServiceClient.Communications.CallRecords[Convert.ToString(callRecordId)].Sessions.Request(queryOption).GetAsync()); nextPageRequest = callRecordSession.NextPageRequest; foreach (var session in callRecordSession) { sessionList.Add(session); } } while (nextPageRequest != null); its working for many callrecordid and throwing the above error for some callrecordId I am using a microsoft graph sdk of 4.32 Can some one help me?787Views0likes0CommentsCreate hold endpoint not available in Graph v1.0 API for eDiscovery
We are working on an integration between our application and M365 and the documentation as well as the beta API had endpoints for Graph eDiscovery beta API for automatically creating legal holds in M365. However looking at the SDK version V1.0 we don't see that capability. Can someone help with this or is anyone else facing the same issue? Any help will be appreciated.719Views0likes1Commentcreate a calendar event for a whole team ( participants) using the graph api
Hi Is it possible to create a calendar event for a whole team using the graph api? Right now, the calendar is coming only in the logged in/organizer account through which the event/meeting is being created But, I want to have this feature for every users/attendees/participants in their calendars. If it is not possible, then, can a separate meeting invite be sent to every users in the attendees list to accept the event/meeting so that they can be notified about the event which has been created and which they need to attend.637Views0likes3Comments