Questions tagged [azure-ad-graph-api]

Use this tag for Azure AD Graph API (see link [1] in details below) related questions (not Microsoft Graph). The Azure Active Directory Graph API provides programmatic access to Azure AD through REST API endpoints. Applications can use the Graph API to perform create, read, update, and delete (CRUD) operations on directory data and objects

Graph API supports the following common operations for a user object:

  • Create a new user in a directory
  • Get a user’s detailed properties, such as their groups
  • Update a user’s properties, such as their location and phone number, or change their password
  • Check a user’s group membership for role-based access
  • Disable a user’s account or delete it entirely

In addition to user objects, you can perform similar operations on other objects such as groups and applications.

Useful Links:

  1. Documentation
  2. MSDN: Azure AD Graph API Reference
  3. Microsoft Graph or Azure AD Graph
1920 questions
0
votes
1 answer

office365 graph api to assign owner rights on private groups

I want to find mechanism to add specific users as owner of private groups. I tried MS Graph API, but it looks like there is rest api to assign owner rights.
Manojkumar
  • 43
  • 6
0
votes
1 answer

Storing MSAL Graph API token in client side React and reusing it until expiry

I am fairly new to React. This question is related to storing the authentication token in the client side and reusing it until expiry. I am using MSAL to for authentication in my React app. Below is my code. import * as React from 'react'; import…
0
votes
2 answers

how to get looged in user from system when AD is on azure cloud

We have a desktop application in which we need to login with user logged in email id. Although for local network drive we getting email id with LDAP protocol like (i.e. in c# with code line -…
0
votes
1 answer

Using SharePoint Rest API

I am trying to read SharePoint lists using the following endpoint (http://url/_api/web/lists) and I am passing the access token, but the response returns Access Denied. While I use the same access token to call an endpoint from the graph API…
0
votes
1 answer

Graph Explorer says access denied for view list of Channels. Using Microsoft Graph API

visual representation of graph explorer "Failed to execute Skype backend request GetThreadsS2SRequest." Today morning my app failed and when I digged enough I realize that somehow my permission to list the channels is denied. Weird part is if i put…
0
votes
1 answer

How to integrate Oauth authentication into a Active learning bot

I am building an activelearning bot from the samples provided in the Microsoft bot repository specifically this one: https://github.com/microsoft/BotBuilder-Samples/tree/master/samples/csharp_dotnetcore/48.qnamaker-active-learning-bot And I am also…
0
votes
1 answer

How to get Organization name from Azure openid?

I want to build a SAAS Service for Azure marketplace using single-sign-on. I have read this document Microsoft identity platform access tokens, but can not find anything relate to User's Organization. Is there any way to get user's Organization…
howie
  • 2,587
  • 3
  • 27
  • 43
0
votes
1 answer

Microsoft Graph API get Contact info

I have configured an AD in Azure environment and has granted permissions User.Read and User.Read.All to get user details via graph api. I want to read AD user contact info but api send only below details as mentioned in the documentations. { …
Aruna
  • 1,962
  • 4
  • 25
  • 50
0
votes
1 answer

Creating a New User in Azure DevOps using Rest API

I am trying to create a new user in Azure DevOps using Rest API C# and by debugging the code I am not seeing any error and the user information were showing correct after I get result of the created new user. My issue is that the user is NOT saved…
Nick
  • 780
  • 2
  • 13
  • 33
0
votes
1 answer

migrating from Azure Active Directory Graph Api to Microsoft Graph Api

I have an application I am signing in to using SSO office 365 to authenticate the user. I am also calling the azure active directory graph api to pull a list of all users in the organization. I want to stop using the azure active directory graph…
0
votes
2 answers

Integrate external azure Active Directory in to ADB2C

I have a requirement to integrate multiple external azure active directories into my application(multitenant). Currently I'm using AD B2C. In brief any client purchases my product, should be able to integrate their organization azure active…
0
votes
2 answers

How to create microsoft app password using API?

I'm able to create app id using Graph API but app secret/password is not generated with it. I need a way to generate/set a password using APIs. Am I missing something?
0
votes
2 answers

Update user attributes on Azure AD

I am using Azure AD for user authentication, and using user flows for singup and login, we also have some custom attributes which are set through the user flow itself. I am trying to update those custom attributes for a user using his access…
0
votes
1 answer

Trying to get a value of custom field from a SharePoint Online library using Graph api

I am having trouble displaying a custom field from a SharePoint Online document library. I am able to view all fields. I'm able to show a system field, but when I try to just display a certain custom field it doesn't show up. Below is my code.…
0
votes
0 answers

Call MS Graph API from MS Flow with Binary Body

Have an MS Flow trying to call the Graph API to update a user's profile photo. It takes a username and jpg photo file and then calls an HTTP connection secured using Azure AD (with https://graph.microsoft.com as the resource URI). Unfortunately, I…
Jeff
  • 35,755
  • 15
  • 108
  • 220
1 2 3
99
100