deviceCategory resource type
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.
Device categories provide a way to organize your devices. Using device categories, company administrators can define unique categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories.
Methods
Method | Return Type | Description |
---|---|---|
List deviceCategories | deviceCategory collection | List properties and relationships of the deviceCategory objects. |
Get deviceCategory | deviceCategory | Read properties and relationships of the deviceCategory object. |
Create deviceCategory | deviceCategory | Create a new deviceCategory object. |
Delete deviceCategory | None | Deletes a deviceCategory. |
Update deviceCategory | deviceCategory | Update the properties of a deviceCategory object. |
Properties
Property | Type | Description |
---|---|---|
id | String | Unique identifier for the device category. Read-only. |
Onboarding | ||
displayName | String | Display name for the device category. |
description | String | Optional description for the device category. |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.deviceCategory",
"id": "String (identifier)",
"displayName": "String",
"description": "String"
}