• Microsoft Graph is a RESTful web API that enables you to access Microsoft Cloud service resources. After you register your app and get authentication tokens for a user or service, you can make requests to the Microsoft Graph API.
  • To read from or write to a resource such as a user or an email message, you construct a request that looks like the following:

HTTP

Copy {HTTP method} https://graph.microsoft.com/{version}/{resource}?{query-parameters} The components of a request include:

{HTTP method} - The HTTP method used on the request to Microsoft Graph. {version} - The version of the Microsoft Graph API your application is using. {resource} - The resource in Microsoft Graph that you’re referencing. {query-parameters} - Optional OData query options or REST method