Use the Microsoft Graph SDKs with the beta API

Many Microsoft Graph SDKs use the v1.0 Microsoft Graph endpoint by default. The SDKs can be used with the beta endpoint for nonproduction applications. The method for accessing the beta endpoint depends on your SDK.

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

To call the API, you must install the Microsoft.Graph.Beta package. Usage is the same as the Microsoft.Graph package.

// Version 5.x
using Microsoft.Graph.Beta;
// Version 4.x and earlier
// using Microsoft.Graph;

// Create a new instance of GraphServiceClient.
GraphServiceClient graphClient = new GraphServiceClient(...);

SDKs in preview or GA status.