获取设备Get device
命名空间:microsoft.graphNamespace: microsoft.graph
获取 device 对象的属性和关系。Get the properties and relationships of a device object.
PermissionsPermissions
要调用此 API,需要以下权限之一。要了解详细信息,包括如何选择权限的信息,请参阅权限。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) | Directory.Read.All、Directory.ReadWrite.All、Directory.AccessAsUser.AllDirectory.Read.All, Directory.ReadWrite.All, Directory.AccessAsUser.All |
委派(个人 Microsoft 帐户)Delegated (personal Microsoft account) | 不支持。Not supported. |
应用程序Application | Device.ReadWrite.All、Directory.Read.All、Directory.ReadWrite.AllDevice.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All |
HTTP 请求HTTP request
GET /devices/{id}
注意:请求中的“id”是设备的“id”属性,不是“deviceId”属性。Note: The "id" in the request is the "id" property of the device, not the "deviceId" property.
可选的查询参数Optional query parameters
此方法支持 OData 查询参数 来帮助自定义响应。This method supports the OData Query Parameters to help customize the response.
请求标头Request headers
名称Name | 类型Type | 说明Description |
---|---|---|
AuthorizationAuthorization | stringstring | Bearer {token}。必需。Bearer {token}. Required. |
请求正文Request body
请勿提供此方法的请求正文。Do not supply a request body for this method.
响应Response
如果成功,此方法在响应正文中返回 200 OK
响应代码和 device 对象。If successful, this method returns a 200 OK
response code and device object in the response body.
示例Example
请求Request
下面是一个请求示例。Here is an example of the request.
GET https://graph.microsoft.com/v1.0/devices/{id}
响应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
{
"accountEnabled":false,
"deviceId":"4c299165-6e8f-4b45-a5ba-c5d250a707ff",
"displayName":"Test device",
"id": "id-value",
"operatingSystem":"linux",
"operatingSystemVersion":"1"
}