Sort order for Sharepoint API “GET sites?search=*"
https://learn.microsoft.com/en-us/answers/questions/2152627/sort-order-for-sharepoint-api-get-sites-search-*?comment=answer-1908331&page=1#comment-1894317 In the past, the above query showed that “GET sites?search=” does not support sorting, but “GET…
Retrieve "configurableProperties" value once set by the admin in an organisation for an app in Teams?
I have an app that is published to the Microsoft Store, which contains the following in its app manifest file, "configurableProperties": [ "name", "smallImageUrl", "largeImageUrl", "shortDescription",…
AADSTS7000218 - one of my application receives the following error when authenticates Entra id
AADSTS7000218 - one of my application receives the following error when authenticates Entra id
How to retrieve Date of Birth (DOB) for users in Default Azure Active Directory (non-B2C) using Microsoft Graph API?
I am working on an application where I need to retrieve basic user information, including Name, Email, and Date of Birth (DOB), from Microsoft Graph API. However, I am encountering challenges, particularly with accessing the DOB attribute in a Default…
Microsoft removed Graph permission "Directory.Write.Restricted"
Hello, Microsoft removed Graph permission "Directory.Write.Restricted" without any preannouncement. We cannot use Update-MgDevice for devices in administrative units any more. Directory.Write.Restricted available: Microsoft Graph permissions…
How do you re-assign a primary user to an Intune device using Graph
We're struggling with finding a way to use the Graph API to re-assign a primary user to a device in Intune. We've built a custom loaning center application where we'd need to replace the primary user whenever a device is checked out so that the customer…
How to get CallId or CallChainId through graph api, without utilising callRecords or Creating a call through "communications/calls"
So I am getting webhooks by subscibing to /chats/getAllMessages Now I am able to retrieve "callId" whenever the user enables Recording for their meetings. However I am not able to retrieve "callId" for events like…
When updating a Teams event using the API, if the event already has a virtual meeting (Teams meeting link) and the update request removes the virtual meeting, here’s what might be happening and how to address it:
I am using the Microsoft Teams API to create, update, and delete meetings. However, when I try to update a meeting, it removes the virtual meeting (the Teams meeting link). I am sending the parameter "isOnlineMeeting": true in the request, but…
Graph API permanentDelete sends files to the SharePoint recycle bin
Good afternoon. We have a problem deleting files from SharePoint using Graph API. The context is a document management application that externally handles files located on SharePoint sites. This application uses the endpoint ‘POST…
Messages returned by Microsoft Graph API have nil properties.
We have been experiencing an odd issue for some of our accounts, and are looking for some assistance. When scanning a folder for new messages (ie. the request looking like: /mailFolders/#{``folder_id`` }/messages/delta) we get as a response a list of…
Unable to Post a Message to Teams Channel with Graph API Client + C#
Hi, We are trying to post a message to teams channel, with Channel.SendMessage delegated permissions. And here is the code snippet. var options = new OnBehalfOfCredentialOptions { AuthorityHost = AzureAuthorityHosts.AzurePublicCloud, ``` }; var…
Missing property value enrollmentProfileName for managed devices in Microsoft Graph
When attempting to retrieve data from https://graph.microsoft.com/v1.0/deviceManagement/managedDevices, the enrollmentProfileName property consistently returns null. In contrast, when calling https://graph.microsoft.com/v1.0/devices, the property…
Is fabric providing any GraphAPI for fetching table data?
I have uploaded some csv data on fabric, for this i created workspace and in workspace i create lakehouse, then in this lakehouse i upload a file and then change this file into table, now i want to fetch this tables data using graph api. i can't use odbc…
I am constantly getting the error "Error executing the request" in response at regular time intervals on using the sdk method of graphClient.auditLogs().signIns() in my code.
I have been getting the error response of "Error executing the request" in my code at regular time intervals on calling the graphClient.auditLogs().signIns() method. There does not seem to be any helpful documentation or source online which…
Update-MgAdminSharepointSetting: Too many retries performed. More than 3 retries
I am trying to update Sharepoint Tenant settings with 1260+ domains for sharingAllowedDomainList using either on of the following cmdlets: Getting the same issue with: $Uri = "https://graph.microsoft.com/v1.0/admin/sharepoint/settings"…
locked out of my tenant due to conditional access
Global admin lockout scenario via Conditional Access.
Connecting Microsoft Graph Education API to Power BI
With the deprecation of Insights for leaders in Microsoft SDS and Teams, a need has arisen to connect to the Microsoft Graph Education API for data collection to build a Power BI dashboard. Is there a reliable method for establishing this connection,…
Microsoft Graph connector support Anonymous Proxy?
Microsoft Graph connector support Anonymous Proxy? If so were should be configured ? on WINHTTP on IE settings? or somewhere else? Most Enterprise customer can't bypass proxy. Regards Daniele
How to Retrieve Children of OneDrive Personal Folder Named 'v1.0' Using MS Graph ?
Hi, I’m trying to retrieve the children of a folder named v1.0. The response is a 404 error. According to the instructions here, the request should be GET /me/drive/items/root:/Test/v1.0:/children Interestingly, when the folder name is v1.1, the…
How can I search for a specific word or phrase in SharePoint List items using filter queries?
I want to get all SharePoint Online list items which contains a word or a phrase in one of their columns. I tried using contains operator in a filter query parameter, but it did not work. See below screenshot. Reference:…