Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important: Microsoft supports Intune /beta APIs, but they are subject to more frequent change. Microsoft recommends using version v1.0 when possible. Check an API's availability in version v1.0 using the Version selector.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Update the properties of a comanagementEligibleDevice 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, DeviceManagementManagedDevices.ReadWrite.All |
| Delegated (personal Microsoft account) | Not supported. |
| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All |
HTTP Request
PATCH /deviceManagement/comanagementEligibleDevices/{comanagementEligibleDeviceId}
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 comanagementEligibleDevice object.
The following table shows the properties that are required when you create the comanagementEligibleDevice.
| Property | Type | Description |
|---|---|---|
| id | String | Unique Id for the device |
| deviceName | String | DeviceName |
| deviceType | deviceType | DeviceType. Possible values are: desktop, windowsRT, winMO6, nokia, windowsPhone, mac, winCE, winEmbedded, iPhone, iPad, iPod, android, iSocConsumer, unix, macMDM, holoLens, surfaceHub, androidForWork, androidEnterprise, windows10x, androidnGMS, chromeOS, linux, visionOS, tvOS, blackberry, palm, unknown, cloudPC. |
| clientRegistrationStatus | deviceRegistrationState | ClientRegistrationStatus. Possible values are: notRegistered, registered, revoked, keyConflict, approvalPending, certificateReset, notRegisteredPendingEnrollment, unknown. |
| ownerType | ownerType | OwnerType. Possible values are: unknown, company, personal. |
| managementAgents | managementAgentType | ManagementAgents. Possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController, microsoft365ManagedMdm, msSense, intuneAosp, google, unknownFutureValue. |
| managementState | managementState | ManagementState. Possible values are: managed, retirePending, retireFailed, wipePending, wipeFailed, unhealthy, deletePending, retireIssued, wipeIssued, wipeCanceled, retireCanceled, discovered, unknownFutureValue. |
| referenceId | String | ReferenceId |
| mdmStatus | String | MDMStatus |
| osVersion | String | OSVersion |
| serialNumber | String | SerialNumber |
| manufacturer | String | Manufacturer |
| model | String | Model |
| osDescription | String | OSDescription |
| entitySource | Int32 | EntitySource |
| userId | String | UserId |
| upn | String | UPN |
| userEmail | String | UserEmail |
| userName | String | UserName |
| status | comanagementEligibleType | ComanagementEligibleStatus. Possible values are: comanaged, eligible, eligibleButNotAzureAdJoined, needsOsUpdate, ineligible, scheduledForEnrollment, unknownFutureValue. |
Response
If successful, this method returns a 200 OK response code and an updated comanagementEligibleDevice object in the response body.
Example
Request
Here is an example of the request.
PATCH https://graph.microsoft.com/beta/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDeviceId}
Content-type: application/json
Content-length: 714
{
"@odata.type": "#microsoft.graph.comanagementEligibleDevice",
"deviceName": "Device Name value",
"deviceType": "windowsRT",
"clientRegistrationStatus": "registered",
"ownerType": "company",
"managementAgents": "mdm",
"managementState": "retirePending",
"referenceId": "Reference Id value",
"mdmStatus": "Mdm Status value",
"osVersion": "Os Version value",
"serialNumber": "Serial Number value",
"manufacturer": "Manufacturer value",
"model": "Model value",
"osDescription": "Os Description value",
"entitySource": 12,
"userId": "User Id value",
"upn": "Upn value",
"userEmail": "User Email value",
"userName": "User Name value",
"status": "eligible"
}
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: 763
{
"@odata.type": "#microsoft.graph.comanagementEligibleDevice",
"id": "ac20683b-683b-ac20-3b68-20ac3b6820ac",
"deviceName": "Device Name value",
"deviceType": "windowsRT",
"clientRegistrationStatus": "registered",
"ownerType": "company",
"managementAgents": "mdm",
"managementState": "retirePending",
"referenceId": "Reference Id value",
"mdmStatus": "Mdm Status value",
"osVersion": "Os Version value",
"serialNumber": "Serial Number value",
"manufacturer": "Manufacturer value",
"model": "Model value",
"osDescription": "Os Description value",
"entitySource": 12,
"userId": "User Id value",
"upn": "Upn value",
"userEmail": "User Email value",
"userName": "User Name value",
"status": "eligible"
}