Questions tagged [graph-explorer]

Graph Explorer is a developer tool that lets you conveniently make Microsoft Graph REST API requests and view corresponding responses. Use Graph Explorer to try APIs on the default sample tenant to explore capabilities, or sign in to your own tenant and use it as a prototyping tool to fulfill your app scenarios.

Graph Explorer is a developer tool that lets you conveniently make Microsoft Graph REST API requests and view corresponding responses. Use Graph Explorer to try APIs on the default sample tenant to explore capabilities, or sign in to your own tenant and use it as a prototyping tool to fulfill your app scenarios. This tool includes helpful features such as code snippets in C#, Java, JavaScript, and Objective C; Microsoft Graph Toolkit and adaptive cards integration; and more.

Use Graph Explorer to:

  • Make Microsoft Graph API requests (GET, POST, PUT, PATCH, and DELETE) and see responses including response code and any headers and bodies.
  • Consent to permissions. Graph Explorer supports only delegated permissions.
  • Add a request body and request header to your query.
  • View and copy the access token.
  • View sample queries for different services in Microsoft Graph.
  • View, download, or delete the queries you ran in the last 30 days.
  • View and copy code snippets of each query you run in C#, Java, JavaScript, and Objective C.
  • Access Microsoft Graph Toolkit components and adaptive cards for some sample queries.
  • Share queries, including the request body and request headers.

Graph Explorer handles the authentication process for you. Customize the experience by collapsing the sidebar or changing the theme.

32 questions
3
votes
3 answers

How to query another Azure Active Directory tenant from Graph Explorer

I am using Azure Graph API Explorer. I want to query the apps list in a tenant. I am user in tenant_x (where user was originally created) as well as admin in tenant_y (created later with my user). I understand that when I log in I go directly in the…
2
votes
1 answer

"Unknown Error" in Microsoft Graph API Get Staff Availability in MS Bookings

When trying to make a request to the graph API endpoint for getting staff availability info on MS Bookings I keep receiving the below error which returns status code 500. I had followed the guide here and also decoded my access token and verified I…
1
vote
1 answer

Filter SharePoint list items using Microsoft Graph Api to get the latest csv file

I have a sharepoint site page that has some CSV files starting with ABC_datetime (e.g.ABC_20-02-2022 18-10-00) and I have created a sharepoint choice column Datatype that will have some reference value in it while I insert the record in the…
1
vote
1 answer

Getting 404 when requesting physicalMemoryInBytes using Graph API

The response I currently receive from Graph Explorer with the following query: https://graph.microsoft.com/beta/deviceManagement/managedDevices/11111111-1111-1111-1111-111111111111 { "error": { "code": "ResourceNotFound", …
1
vote
1 answer

is $select supported when querying ToDoTaskList and ToDoTask in Microsoft GraphAPI

I am new to Microsoft Graph API. I am trying to make a call https://graph.microsoft.com/beta/me/todo/lists?$select=displayName,id in Graph Explorer, as I want only get id and displayName of the todotasklists that I have access for. When I run this…
Casey
  • 11
  • 1
1
vote
0 answers

Azure powershell Graph explorer query Cannot process argument because the value of argument "name" is not valid

We have more than 1000 Azure subscriptions and some subscriptions have 1000+ resources. We are running powershell script from automation account to collect using graph explorer module to collect information about all resource in each subscription.…
A A
  • 21
  • 4
1
vote
0 answers

Microsoft Graph Explorer - test with application permissions?

Is it possible to use Graph Explorer with application permissions i.e. authenticate with client_credentials as the grat_type? I only know of the way to log in with an account which would be using delegated permissions. If that is not possible can I…
colonel_claypoo
  • 543
  • 1
  • 12
  • 25
1
vote
2 answers

How to Filter Query Results from Microsoft-Graph-People?

I am trying to make a Get Request to the Microsoft Graph API for a specific user's email within my organization. Therefore, I have created the following query, to return the displayName, scoredEmailAddresses, and userPrincipalName for user "jane…
0
votes
0 answers

Microsoft Graph API - OneDrive Sync Issues

I use this code to retrieve files from a OneDrive folder. It works perfectly, except for the fact that changes take a long time to propagate. For example if I delete a file, the response will continue to return that file for some 10 minutes. What am…
0
votes
0 answers

How can I access all files and folders in drive using OneDrive API?

I want to get a list of all files and folders in the drive with a single request. I provide this with a recursive function as follows, but as the number of files increases, it becomes impossible to use. public function…
0
votes
1 answer

Fetch Microsoft certifications list from MS learn profile using Graph APIs

I have a Microsoft learn profile connected to my personal Microsoft account. I am trying to fetch the list of certifications using graph API from graph explorer. I have logged into to graph explorer using the same Microsoft Account. I'm getting no…
Kuldeep Singh
  • 517
  • 6
  • 26
0
votes
0 answers

MS Graph Search/Query calls missing all my fields

I've been testing / playing around with the following code for the past few days now and it used to return all the fields I explicitly request. But now I only get back title, author, and url. All the "ids" are missing. I haven’t changed anything…
dot
  • 14,928
  • 41
  • 110
  • 218
0
votes
1 answer

GraphServiceClient - how to define the request body?

Background I have an azure function app that in part, includes the following logic: var ApplicationClientID = Environment.GetEnvironmentVariable("AZ_APPLICATION_CLIENT_ID"); var ApplicationClientSecret =…
dot
  • 14,928
  • 41
  • 110
  • 218
0
votes
0 answers

Why AWS Graph Explorer when connected to Gremlin server doesn't show the edges between vertices?

I have cloned the AWS Graph Explorer on my local machine and then connected it to a Gremlin server (Started with the prebuilt Modern example). The problem here is that it shows me that the edges exist but doesn't show them on Graph. AWS Graph…
0
votes
1 answer

Enable the MFA for Azure AD B2C

I'm developing a solution for my company. Current situation: The application can register the new user to the Azure AD B2C and the Multi Factor Authentication Status are all Disabled. (I've seen it by get to Azure AD B2C > Users > Per-user…
1
2 3