Retrieve information of a deleted used in Azure AD using graph API
Is there any way to retrieve information on a deleted user in Azure AD using Graph API? I need the deleted date of that user.
Is there any way to retrieve information on a deleted user in Azure AD using Graph API? I need the deleted date of that user.
I have been using my personal MS account (actually a gmail account I use to log into my personal MS account and azure portal). I have a bunch of applications in azure and DNS services, etc all using this account.…
I have following PowerShell script which add event on the Office 365 group calendar. When I run the following script, it will only add the first event but not the second one. And there is no error. Have I missed…
I'm developing an Outlook add-on that requires Mail.ReadWrite permission. I have added this permission in my registration app in Azure in my tenant ( Tenant A ). I have also added them in the manifest.xml file <Scopes> <Scope>Mail.ReadWrite</Scope> <Scope>offline_access</Scope> <Scope>User.Read</Scope>…
In my ASP.NET MVC Core project, I want all the AppRoles that are set up in the App Registration as a list to display in my view. Currently I have attempted the following: var servicePrincipal = await _graphServiceClient.Applications[_configuration["AzureAd:AppRegistrationId"]] .Request() .Select("appRoles")…
I was trying to create a very simple app to connect to my OneDrive and receive a list of the various files that I have hosted on OneDrive. This is the code: string clientId = "My client Id"; string clientSecret…
I am trying to change the password of a user in Azure AD B2C using the update endpoint provided by the Microsoft Graph API. I followed this Microsoft documentation when I implemented this - https://learn.microsoft.com/en-us/graph/api/user-update?view=graph-rest-1.0&tabs=http#http-request Following is the code I…
Current Behavior - From our service-A, we are calling service-B. We are currently using client_credentials as a way to generate access_token for service-B(as shown below). Service-B is validating token generated at their end and everything is working fine. Expected behavior…
I need to find a user in my B2C with issuerAssignedId equal with specific email. My query is like this: GET https://graph.microsoft.com/v1.0/users/?$filter=identities/any(c:c/issuerAssignedId eq '[email protected]') However, I get the following error. { "error": { "code": "Request_UnsupportedQuery", "message": "Issuer is not set…
I am currently building a system that sets up a team for a 'project', and want to automate the upload of necessary documents. The files tab in the team is linked to a sharepoint site which i can get the…