Microsoft Graph Explorer
Graph Explorer is a Microsoft-developed tool that allows you to make Microsoft Graph REST API requests. This tool can be accessed using https://bit.ly/3l6EF8m.
The first thing we need to do on the page is to log in. Then we need to grant permissions to Microsoft Graph to access data. To do that, go to the Modify permissions (Preview) tab and give consent to grant relevant permissions.
Figure 17.16: Grant permissions to user
After relevant permissions are in place, we can go ahead and query data using Microsoft Graph Explorer. Let's go ahead and start with a user query.
In this example, I would like to view the account details of the IsaiahL@MSDx927799.OnMicrosoft.com
user. To do that, I am going to use the GET HTTP method and the https://graph.microsoft.com/v1.0/users/IsaiahL@rebeladmin.OnMicrosoft.com
query.
Figure 17.17: User query
Then Microsoft Graph responds to the query with the following data:
Figure...