13,734 questions with Microsoft Security | Microsoft Graph tags
Townhall Graph API : Presenter is always added as in-tenant even as communicationsGuestIdentity
Hi, I am implementing the Townhall api. I am having an issue while adding presenters to a townhall. I want to an add out-of-tenant presenter. I am calling the following endpoint : /beta/solutions/virtualEvents/townhalls/$townhallId/presenters with the…
Microsoft Security | Microsoft Graph
Start Provisioning of private channel site
When creating a private channel in Teams via the Graph API, the associated channel site is not automatically created. I need a command or API call to start provisioning of the channel site without manual intervention.
Microsoft Security | Microsoft Graph
To get historic Presence Data in Microsoft Graph API endpoint
Hi, I want to extract User Status on Teams using Microsoft Graph Presence endpoint. POST /communications/getPresencesByUserId But when i extract the data . It just shows the current status for the user. I want to extract historic status change for the…
Microsoft Security | Microsoft Graph

Unable to use $select with mfaDetail on /beta/auditLogs/signIns – results in "Unsupported query" error
We're using Microsoft Graph API to fetch Azure AD Sign-In logs from the /beta/auditLogs/signIns endpoint. We were facing an issue where requests consistently fail due to a Context Timeout Error — indicating the API takes longer than expected to respond.…
Microsoft Security | Microsoft Graph
ROPC Flow Failing with AADSTS50079 MFA Enrollment Error Even After MFA Disabled
Hello, I'm currently implementing the Resource Owner Password Credentials (ROPC) flow to authenticate users via Microsoft Graph API. However, I’m encountering the following error when attempting to acquire the access token: AADSTS50079: Due to a…
Microsoft Security | Microsoft Graph

How to batch Graph API Intune requests without throttling
Hello, we have a service that fetches Intune devices and Intune detected applications. It then makes more get requests to find which applications are used by which devices. It would be preferable if this data could be provided directly in get…
Microsoft Security | Microsoft Graph
Error connecting Egnyte as a search provider
I am attempting to set up the Egnyte connector to add Egnyte as a data source. I have followed all of the instructions and get the following error message when attempting to authenticate: I am able to replicate the error in ARC. It appears that Egnyte…
Microsoft Security | Microsoft Graph
Creating multi-stage access reviews with Powershell Graph leads to recommendations "not available" within the review
I'm creating two-stage access reviews using Powershell Graph, however the recommendations don't work - they show up as "Not available" within the review. They are supposed to provide insight into whether users have not signed in for 30 days…
Microsoft Security | Microsoft Graph
Convert SyncState(EWS) to Delta(Graph)
Hi! We are changing from EWS to Graph to read a mailbox. On EWS we used SyncFolderItems operation, with the SyncState (https://learn.microsoft.com/en-us/exchange/client-developer/web-service-reference/syncfolderitems-operation) On Graph we…
Exchange | Exchange Server | Management
Microsoft Security | Microsoft Graph
Graph API InternalServerError with FanoutDownstreamContradiction when running queries with large amount of results over multiple sites
Hi, I am running a search query against our SharePoint environment over a large amount of sites using the Graph API. For this we use the 'search/query' endpoint. The request is done using delegated permissions. Currently, when we run a query, most of the…
Microsoft Security | Microsoft Graph
Can we use the same delta token twice from Microsoft Graph Delta Query
Hi, I am working on a project where I need to track incremental changes in users using the Microsoft Graph API delta query and upload these changes to a server in batches. Here is the scenario I am facing: Objective: To get incremental changes in users…
Microsoft Security | Microsoft Graph
I am using graph to retrieve a list of filenames from a folder, however I am not able to mock the calls correctly in the unit test
here is my code: var uploadSession = await graphServiceClient.Drives[driveId] .Items["root"] .ItemWithPath(fileName) .CreateUploadSession .PostAsync(uploadSessionRequestBody); the above code works, but I am not able to mock the call…
Microsoft Security | Microsoft Graph
Graph accessDenied on a folder where I have direct access through link.
Graph returns 403 , access-denied for a specific shared folder on the other person’s OneDrive where I have direct edit access . Api:…
Microsoft Security | Microsoft Graph
Microsoft Graph API: Can't Read Mail Despite Delegated Mail.Read Permission
I'm integrating Microsoft Graph API in a Django backend using delegated permissions. I’m using the authorization code flow (msal.ConfidentialClientApplication.initiate_auth_code_flow() and acquire_token_by_auth_code_flow()) to obtain tokens. After the…
Microsoft Security | Microsoft Graph
Duplicate Entries in /deviceManagement/detectedApps API Response
Hello, When using the Microsoft Graph API endpoint https://graph.microsoft.com/v1.0/deviceManagement/detectedApps, I am seeing duplicate entries with the same "Id" for certain detected applications. These entries have the same or similar…
Microsoft Security | Microsoft Graph
Graph Access crashes (graph sdk for go)
I am running into an issue with graph sdk for go. It's up and running for a day or 3 and than randomly crashes. I have my function return an error if ...Messages().Get() returns one. But it seems like it tries to refresh the token and crashes. I don't…
Microsoft Security | Microsoft Graph
deviceManagement/managedDevices missing ipAddressV4 and wiredIPv4Addresses
Greetings. We try to obtain the IPs of a device querying https://graph.microsoft.com/beta/deviceManagement/managedDevices/{deviceID}. We get a proper response but the parameter "ipAddressV4" is null and "wiredIPv4Addresses" is…
Microsoft Security | Microsoft Graph
Modifying MS Teams Tags in Shared Channels via Graph API
MS Teams now supports tags in Shared Channels, allowing users to create and modify tags through the Desktop app and @mention others via tags. Currently, it appears that the Graph API only supports changes to tags in standard teams, not in shared…
Microsoft Security | Microsoft Graph

Graph API: Creating Calendar Events via Delegation Returns Error Response When Sensitivity is Set to private
Hello, We are encountering an issue when creating calendar events via delegated access through Graph API when we call POST /users/[emailAddress1]/events where [emailAddress2] (the signed-in user) has delegate access to [emailAddress1]'s calendar. The…
Microsoft Security | Microsoft Graph
Unable to initiate recording in a meeting using the Graph API endpoint: `https://graph.microsoft.com/beta/communications/calls/{id}/microsoft.graph.StartRecording` with a bot.
I'm working on building a bot that can join a specified meeting and start a recording. The bot is successfully able to join the meeting. However, when I attempt to initiate the recording using the Graph API endpoint: POST-…