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.
Update the properties of a specific directory setting object.
Note: The /beta version of this API only applies to groups. The /v1.0 version of this API has been renamed to Update groupSettings.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var directorySetting = new DirectorySetting
{
Values = new List<SettingValue>()
{
new SettingValue
{
Name = "name-value",
Value = "value-value"
}
}
};
await graphClient.Settings["{id}"]
.Request()
.UpdateAsync(directorySetting);
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.