Update deviceManagementSettingDefinition
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Update the properties of a deviceManagementSettingDefinition object.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementConfiguration.ReadWrite.All |
HTTP Request
PATCH /deviceManagement/settingDefinitions/{deviceManagementSettingDefinitionId}
PATCH /deviceManagement/categories/{deviceManagementSettingCategoryId}/settingDefinitions/{deviceManagementSettingDefinitionId}
PATCH /deviceManagement/intents/{deviceManagementIntentId}/categories/{deviceManagementIntentSettingCategoryId}/settingDefinitions/{deviceManagementSettingDefinitionId}
PATCH /deviceManagement/templates/{deviceManagementTemplateId}/categories/{deviceManagementTemplateSettingCategoryId}/settingDefinitions/{deviceManagementSettingDefinitionId}
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the deviceManagementSettingDefinition object.
The following table shows the properties that are required when you create the deviceManagementSettingDefinition.
Property | Type | Description |
---|---|---|
id | String | The ID of the setting definition |
valueType | deviceManangementIntentValueType | The data type of the value. Possible values are: integer , boolean , string , complex , collection , abstractComplex . |
displayName | String | The setting's display name |
isTopLevel | Boolean | If the setting is top level, it can be configured without the need to be wrapped in a collection or complex setting |
description | String | The setting's description |
placeholderText | String | Placeholder text as an example of valid input |
documentationUrl | String | Url to setting documentation |
headerTitle | String | title of the setting header represents a category/section of a setting/settings |
headerSubtitle | String | subtitle of the setting header for more details about the category/section |
keywords | String collection | Keywords associated with the setting |
constraints | deviceManagementConstraint collection | Collection of constraints for the setting value |
dependencies | deviceManagementSettingDependency collection | Collection of dependencies on other settings |
Response
If successful, this method returns a 200 OK
response code and an updated deviceManagementSettingDefinition object in the response body.
Example
Request
Here is an example of the request.
PATCH https://graph.microsoft.com/beta/deviceManagement/settingDefinitions/{deviceManagementSettingDefinitionId}
Content-type: application/json
Content-length: 1014
{
"@odata.type": "#microsoft.graph.deviceManagementSettingDefinition",
"valueType": "boolean",
"displayName": "Display Name value",
"isTopLevel": true,
"description": "Description value",
"placeholderText": "Placeholder Text value",
"documentationUrl": "https://example.com/documentationUrl/",
"headerTitle": "Header Title value",
"headerSubtitle": "Header Subtitle value",
"keywords": [
"Keywords value"
],
"constraints": [
{
"@odata.type": "microsoft.graph.deviceManagementSettingAppConstraint",
"supportedTypes": [
"Supported Types value"
]
}
],
"dependencies": [
{
"@odata.type": "microsoft.graph.deviceManagementSettingDependency",
"definitionId": "Definition Id value",
"constraints": [
{
"@odata.type": "microsoft.graph.deviceManagementSettingAppConstraint",
"supportedTypes": [
"Supported Types value"
]
}
]
}
]
}
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1063
{
"@odata.type": "#microsoft.graph.deviceManagementSettingDefinition",
"id": "4ec3093d-093d-4ec3-3d09-c34e3d09c34e",
"valueType": "boolean",
"displayName": "Display Name value",
"isTopLevel": true,
"description": "Description value",
"placeholderText": "Placeholder Text value",
"documentationUrl": "https://example.com/documentationUrl/",
"headerTitle": "Header Title value",
"headerSubtitle": "Header Subtitle value",
"keywords": [
"Keywords value"
],
"constraints": [
{
"@odata.type": "microsoft.graph.deviceManagementSettingAppConstraint",
"supportedTypes": [
"Supported Types value"
]
}
],
"dependencies": [
{
"@odata.type": "microsoft.graph.deviceManagementSettingDependency",
"definitionId": "Definition Id value",
"constraints": [
{
"@odata.type": "microsoft.graph.deviceManagementSettingAppConstraint",
"supportedTypes": [
"Supported Types value"
]
}
]
}
]
}