按软件列出设备List devices by software
适用于:Microsoft Defender for EndpointApplies to: Microsoft Defender for Endpoint
- 想要体验 Microsoft Defender for Endpoint?Want to experience Microsoft Defender for Endpoint? 注册免费试用版。Sign up for a free trial.
备注
如果你是美国政府客户,请使用 Microsoft Defender for Endpoint 中针对美国政府客户的 URI。If you are a US Government customer, please use the URIs listed in Microsoft Defender for Endpoint for US Government customers.
提示
为了提高性能,可以使用距离地理位置更近的服务器:For better performance, you can use server closer to your geo location:
- api-us.securitycenter.microsoft.comapi-us.securitycenter.microsoft.com
- api-eu.securitycenter.microsoft.comapi-eu.securitycenter.microsoft.com
- api-uk.securitycenter.microsoft.comapi-uk.securitycenter.microsoft.com
重要
某些信息与预发布的产品有关,在商业发布之前可能有重大修改。Some information relates to prereleased product which may be substantially modified before it's commercially released. Microsoft 对此处所提供的信息不作任何明示或默示的保证。Microsoft makes no warranties, express or implied, with respect to the information provided here.
检索已安装此软件的设备引用列表。Retrieve a list of device references that has this software installed.
权限Permissions
若要调用此 API,需要以下权限之一。One of the following permissions is required to call this API. 若要了解详细信息(包括如何选择权限),请参阅使用 Microsoft Defender for Endpoint API 了解详细信息。To learn more, including how to choose permissions, see Use Microsoft Defender for Endpoint APIs for details.
权限类型Permission type | 权限Permission | 权限显示名称Permission display name |
---|---|---|
应用程序Application | Software.Read.AllSoftware.Read.All | "读取威胁和漏洞管理软件信息"'Read Threat and Vulnerability Management Software information' |
委派(工作或学校帐户)Delegated (work or school account) | Software.ReadSoftware.Read | "读取威胁和漏洞管理软件信息"'Read Threat and Vulnerability Management Software information' |
HTTP 请求HTTP request
GET /api/Software/{Id}/machineReferences
请求标头Request headers
名称Name | 类型Type | 说明Description |
---|---|---|
AuthorizationAuthorization | 字符串String | Bearer {token}。必需。Bearer {token}.Required. |
请求正文Request body
EmptyEmpty
响应Response
如果成功,此方法将返回 200 OK 和正文中已安装软件的设备列表。If successful, this method returns 200 OK and a list of devices with the software installed in the body.
示例Example
请求Request
下面是一个请求示例。Here is an example of the request.
GET https://api.securitycenter.microsoft.com/api/Software/microsoft-_-edge/machineReferences
响应Response
下面是一个响应示例。Here is an example of the response.
{
"@odata.context": "https://api.securitycenter.microsoft.com/api/$metadata#MachineReferences",
"value": [
{
"id": "7c7e1896fa39efb0a32a2cf421d837af1b9bf762",
"computerDnsName": "dave_desktop",
"osPlatform": "Windows10",
"rbacGroupName": "GroupTwo"
},
{
"id": "7d5cc2e7c305e4a0a290392abf6707f9888fda0d",
"computerDnsName": "jane_PC",
"osPlatform": "Windows10",
"rbacGroupName": "GroupTwo"
}
...
]
}