Files
windows-itpro-docs/windows/security/threat-protection/microsoft-defender-atp/get-software.md
Ben Alfasi d16aa0651e s
2020-02-06 19:18:12 +02:00

2.6 KiB

title, description, keywords, search.product, ms.prod, ms.mktglfcycl, ms.sitesec, ms.pagetype, ms.author, author, ms.localizationpriority, manager, audience, ms.collection, ms.topic
title description keywords search.product ms.prod ms.mktglfcycl ms.sitesec ms.pagetype ms.author author ms.localizationpriority manager audience ms.collection ms.topic
List software Retrieves a list of software inventory apis, graph api, supported apis, get, list, file, information, software inventory, threat & vulnerability management api, mdatp tvm api eADQiWindows 10XVcnh w10 deploy library security dolmont DulceMontemayor medium dansimp ITPro M365-security-compliance article

List software inventory API

Applies to: Microsoft Defender Advanced Threat Protection (Microsoft Defender ATP)

Retrieves the organization software inventory.

Permissions

One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Use Microsoft Defender ATP APIs for details.

Permission type Permission Permission display name
Application Software.Read.All 'Read Threat and Vulnerability Management Software information'
Delegated (work or school account) Software.Read 'Read Threat and Vulnerability Management Software information'

HTTP request

GET /api/Software

Request headers

Name Type Description
Authorization String Bearer {token}. Required.

Request body

Empty

Response

If successful, this method returns 200 OK with the software inventory in the body.

Example

Request

Here is an example of the request.

GET https://api.securitycenter.windows.com/api/Software

Response

Here is an example of the response.

{
    "@odata.context": "https://api-us.securitycenter.windows.com/api/$metadata#Software",
    "value": [
			{
				"id": "microsoft-_-edge",
				"name": "edge",
				"vendor": "microsoft",
				"weaknesses": 467,
				"publicExploit": true,
				"activeAlert": false,
				"exposedMachines": 172,
				"impactScore": 2.39947438
			}
			...
        ]
}