change folder name to mdatp from wdatp
@ -1,82 +1,82 @@
|
|||||||
---
|
---
|
||||||
title: Get CVE-KB map API
|
title: Get CVE-KB map API
|
||||||
description: Retrieves a map of CVE's to KB's.
|
description: Retrieves a map of CVE's to KB's.
|
||||||
keywords: apis, graph api, supported apis, get, cve, kb
|
keywords: apis, graph api, supported apis, get, cve, kb
|
||||||
search.product: eADQiWindows 10XVcnh
|
search.product: eADQiWindows 10XVcnh
|
||||||
search.appverid: met150
|
search.appverid: met150
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
ms.mktglfcycl: deploy
|
ms.mktglfcycl: deploy
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
ms.pagetype: security
|
ms.pagetype: security
|
||||||
ms.author: leonidzh
|
ms.author: leonidzh
|
||||||
author: mjcaparas
|
author: mjcaparas
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
manager: dansimp
|
manager: dansimp
|
||||||
audience: ITPro
|
audience: ITPro
|
||||||
ms.collection: M365-security-compliance
|
ms.collection: M365-security-compliance
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 10/07/2018
|
ms.date: 10/07/2018
|
||||||
---
|
---
|
||||||
|
|
||||||
# Get CVE-KB map API
|
# Get CVE-KB map API
|
||||||
|
|
||||||
**Applies to:**
|
**Applies to:**
|
||||||
|
|
||||||
- [Windows Defender Advanced Threat Protection (Windows Defender ATP)](https://go.microsoft.com/fwlink/p/?linkid=2069559)
|
- [Windows Defender Advanced Threat Protection (Windows Defender ATP)](https://go.microsoft.com/fwlink/p/?linkid=2069559)
|
||||||
|
|
||||||
Retrieves a map of CVE's to KB's and CVE details.
|
Retrieves a map of CVE's to KB's and CVE details.
|
||||||
|
|
||||||
## Permissions
|
## Permissions
|
||||||
User needs read permissions.
|
User needs read permissions.
|
||||||
|
|
||||||
## HTTP request
|
## HTTP request
|
||||||
```
|
```
|
||||||
GET /testwdatppreview/cvekbmap
|
GET /testwdatppreview/cvekbmap
|
||||||
```
|
```
|
||||||
|
|
||||||
## Request headers
|
## Request headers
|
||||||
|
|
||||||
Header | Value
|
Header | Value
|
||||||
:---|:---
|
:---|:---
|
||||||
Authorization | Bearer {token}. **Required**.
|
Authorization | Bearer {token}. **Required**.
|
||||||
Content type | application/json
|
Content type | application/json
|
||||||
|
|
||||||
## Request body
|
## Request body
|
||||||
Empty
|
Empty
|
||||||
|
|
||||||
## Response
|
## Response
|
||||||
If successful and map exists - 200 OK.
|
If successful and map exists - 200 OK.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
**Request**
|
**Request**
|
||||||
|
|
||||||
Here is an example of the request.
|
Here is an example of the request.
|
||||||
|
|
||||||
```
|
```
|
||||||
GET https://graph.microsoft.com/testwdatppreview/CveKbMap
|
GET https://graph.microsoft.com/testwdatppreview/CveKbMap
|
||||||
Content-type: application/json
|
Content-type: application/json
|
||||||
```
|
```
|
||||||
|
|
||||||
**Response**
|
**Response**
|
||||||
|
|
||||||
Here is an example of the response.
|
Here is an example of the response.
|
||||||
|
|
||||||
```
|
```
|
||||||
HTTP/1.1 200 OK
|
HTTP/1.1 200 OK
|
||||||
Content-type: application/json
|
Content-type: application/json
|
||||||
{
|
{
|
||||||
"@odata.context":"https://graph.microsoft.com/testwdatppreview/$metadata#CveKbMap",
|
"@odata.context":"https://graph.microsoft.com/testwdatppreview/$metadata#CveKbMap",
|
||||||
"@odata.count": 4168,
|
"@odata.count": 4168,
|
||||||
"value": [
|
"value": [
|
||||||
{
|
{
|
||||||
"cveKbId": "CVE-2015-2482-3097617",
|
"cveKbId": "CVE-2015-2482-3097617",
|
||||||
"cveId": "CVE-2015-2482",
|
"cveId": "CVE-2015-2482",
|
||||||
"kbId":"3097617",
|
"kbId":"3097617",
|
||||||
"title": "Cumulative Security Update for Internet Explorer",
|
"title": "Cumulative Security Update for Internet Explorer",
|
||||||
"severity": "Critical"
|
"severity": "Critical"
|
||||||
},
|
},
|
||||||
…
|
…
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
@ -1,81 +1,81 @@
|
|||||||
---
|
---
|
||||||
title: Get KB collection API
|
title: Get KB collection API
|
||||||
description: Retrieves a collection of KB's.
|
description: Retrieves a collection of KB's.
|
||||||
keywords: apis, graph api, supported apis, get, kb
|
keywords: apis, graph api, supported apis, get, kb
|
||||||
search.product: eADQiWindows 10XVcnh
|
search.product: eADQiWindows 10XVcnh
|
||||||
search.appverid: met150
|
search.appverid: met150
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
ms.mktglfcycl: deploy
|
ms.mktglfcycl: deploy
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
ms.pagetype: security
|
ms.pagetype: security
|
||||||
ms.author: leonidzh
|
ms.author: leonidzh
|
||||||
author: mjcaparas
|
author: mjcaparas
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
manager: dansimp
|
manager: dansimp
|
||||||
audience: ITPro
|
audience: ITPro
|
||||||
ms.collection: M365-security-compliance
|
ms.collection: M365-security-compliance
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 10/07/2018
|
ms.date: 10/07/2018
|
||||||
---
|
---
|
||||||
|
|
||||||
# Get KB collection API
|
# Get KB collection API
|
||||||
|
|
||||||
**Applies to:**
|
**Applies to:**
|
||||||
|
|
||||||
- [Windows Defender Advanced Threat Protection (Windows Defender ATP)](https://go.microsoft.com/fwlink/p/?linkid=2069559)
|
- [Windows Defender Advanced Threat Protection (Windows Defender ATP)](https://go.microsoft.com/fwlink/p/?linkid=2069559)
|
||||||
|
|
||||||
Retrieves a collection of KB's and KB details.
|
Retrieves a collection of KB's and KB details.
|
||||||
|
|
||||||
## Permissions
|
## Permissions
|
||||||
User needs read permissions.
|
User needs read permissions.
|
||||||
|
|
||||||
## HTTP request
|
## HTTP request
|
||||||
```
|
```
|
||||||
GET /testwdatppreview/kbinfo
|
GET /testwdatppreview/kbinfo
|
||||||
```
|
```
|
||||||
|
|
||||||
## Request headers
|
## Request headers
|
||||||
|
|
||||||
Header | Value
|
Header | Value
|
||||||
:---|:---
|
:---|:---
|
||||||
Authorization | Bearer {token}. **Required**.
|
Authorization | Bearer {token}. **Required**.
|
||||||
Content type | application/json
|
Content type | application/json
|
||||||
|
|
||||||
## Request body
|
## Request body
|
||||||
Empty
|
Empty
|
||||||
|
|
||||||
## Response
|
## Response
|
||||||
If successful - 200 OK.
|
If successful - 200 OK.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
**Request**
|
**Request**
|
||||||
|
|
||||||
Here is an example of the request.
|
Here is an example of the request.
|
||||||
|
|
||||||
```
|
```
|
||||||
GET https://graph.microsoft.com/testwdatppreview/KbInfo
|
GET https://graph.microsoft.com/testwdatppreview/KbInfo
|
||||||
Content-type: application/json
|
Content-type: application/json
|
||||||
```
|
```
|
||||||
|
|
||||||
**Response**
|
**Response**
|
||||||
|
|
||||||
Here is an example of the response.
|
Here is an example of the response.
|
||||||
|
|
||||||
```
|
```
|
||||||
HTTP/1.1 200 OK
|
HTTP/1.1 200 OK
|
||||||
Content-type: application/json
|
Content-type: application/json
|
||||||
{
|
{
|
||||||
"@odata.context": "https://graph.microsoft.com/testwdatppreview/$metadata#KbInfo",
|
"@odata.context": "https://graph.microsoft.com/testwdatppreview/$metadata#KbInfo",
|
||||||
"@odata.count": 271,
|
"@odata.count": 271,
|
||||||
"value":[
|
"value":[
|
||||||
{
|
{
|
||||||
"id": "KB3097617 (10240.16549) Amd64",
|
"id": "KB3097617 (10240.16549) Amd64",
|
||||||
"release": "KB3097617 (10240.16549)",
|
"release": "KB3097617 (10240.16549)",
|
||||||
"publishingDate": "2015-10-16T21:00:00Z",
|
"publishingDate": "2015-10-16T21:00:00Z",
|
||||||
"version": "10.0.10240.16549",
|
"version": "10.0.10240.16549",
|
||||||
"architecture": "Amd64"
|
"architecture": "Amd64"
|
||||||
},
|
},
|
||||||
…
|
…
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -1,81 +1,81 @@
|
|||||||
---
|
---
|
||||||
title: Get RBAC machine groups collection API
|
title: Get RBAC machine groups collection API
|
||||||
description: Retrieves a collection of RBAC machine groups.
|
description: Retrieves a collection of RBAC machine groups.
|
||||||
keywords: apis, graph api, supported apis, get, RBAC, group
|
keywords: apis, graph api, supported apis, get, RBAC, group
|
||||||
search.product: eADQiWindows 10XVcnh
|
search.product: eADQiWindows 10XVcnh
|
||||||
search.appverid: met150
|
search.appverid: met150
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
ms.mktglfcycl: deploy
|
ms.mktglfcycl: deploy
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
ms.pagetype: security
|
ms.pagetype: security
|
||||||
ms.author: leonidzh
|
ms.author: leonidzh
|
||||||
author: mjcaparas
|
author: mjcaparas
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
manager: dansimp
|
manager: dansimp
|
||||||
audience: ITPro
|
audience: ITPro
|
||||||
ms.collection: M365-security-compliance
|
ms.collection: M365-security-compliance
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 10/07/2018
|
ms.date: 10/07/2018
|
||||||
---
|
---
|
||||||
|
|
||||||
# Get KB collection API
|
# Get KB collection API
|
||||||
|
|
||||||
**Applies to:**
|
**Applies to:**
|
||||||
|
|
||||||
- [Windows Defender Advanced Threat Protection (Windows Defender ATP)](https://go.microsoft.com/fwlink/p/?linkid=2069559)
|
- [Windows Defender Advanced Threat Protection (Windows Defender ATP)](https://go.microsoft.com/fwlink/p/?linkid=2069559)
|
||||||
|
|
||||||
Retrieves a collection of RBAC machine groups.
|
Retrieves a collection of RBAC machine groups.
|
||||||
|
|
||||||
## Permissions
|
## Permissions
|
||||||
User needs read permissions.
|
User needs read permissions.
|
||||||
|
|
||||||
## HTTP request
|
## HTTP request
|
||||||
```
|
```
|
||||||
GET /testwdatppreview/machinegroups
|
GET /testwdatppreview/machinegroups
|
||||||
```
|
```
|
||||||
|
|
||||||
## Request headers
|
## Request headers
|
||||||
|
|
||||||
Header | Value
|
Header | Value
|
||||||
:---|:---
|
:---|:---
|
||||||
Authorization | Bearer {token}. **Required**.
|
Authorization | Bearer {token}. **Required**.
|
||||||
Content type | application/json
|
Content type | application/json
|
||||||
|
|
||||||
## Request body
|
## Request body
|
||||||
Empty
|
Empty
|
||||||
|
|
||||||
## Response
|
## Response
|
||||||
If successful - 200 OK.
|
If successful - 200 OK.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
**Request**
|
**Request**
|
||||||
|
|
||||||
Here is an example of the request.
|
Here is an example of the request.
|
||||||
|
|
||||||
```
|
```
|
||||||
GET https://graph.microsoft.com/testwdatppreview/machinegroups
|
GET https://graph.microsoft.com/testwdatppreview/machinegroups
|
||||||
Content-type: application/json
|
Content-type: application/json
|
||||||
```
|
```
|
||||||
|
|
||||||
**Response**
|
**Response**
|
||||||
|
|
||||||
Here is an example of the response.
|
Here is an example of the response.
|
||||||
Field id contains machine group **id** and equal to field **rbacGroupId** in machines info.
|
Field id contains machine group **id** and equal to field **rbacGroupId** in machines info.
|
||||||
Field **ungrouped** is true only for one group for all machines that have not been assigned to any group. This group as usual has name "UnassignedGroup".
|
Field **ungrouped** is true only for one group for all machines that have not been assigned to any group. This group as usual has name "UnassignedGroup".
|
||||||
|
|
||||||
```
|
```
|
||||||
HTTP/1.1 200 OK
|
HTTP/1.1 200 OK
|
||||||
Content-type: application/json
|
Content-type: application/json
|
||||||
{
|
{
|
||||||
"@odata.context":"https://graph.microsoft.com/testwdatppreview/$metadata#MachineGroups",
|
"@odata.context":"https://graph.microsoft.com/testwdatppreview/$metadata#MachineGroups",
|
||||||
"@odata.count":7,
|
"@odata.count":7,
|
||||||
"value":[
|
"value":[
|
||||||
{
|
{
|
||||||
"id":86,
|
"id":86,
|
||||||
"name":"UnassignedGroup",
|
"name":"UnassignedGroup",
|
||||||
"description":"",
|
"description":"",
|
||||||
"ungrouped":true},
|
"ungrouped":true},
|
||||||
…
|
…
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -1,88 +1,88 @@
|
|||||||
---
|
---
|
||||||
title: Get machines security states collection API
|
title: Get machines security states collection API
|
||||||
description: Retrieves a collection of machines security states.
|
description: Retrieves a collection of machines security states.
|
||||||
keywords: apis, graph api, supported apis, get, machine, security, state
|
keywords: apis, graph api, supported apis, get, machine, security, state
|
||||||
search.product: eADQiWindows 10XVcnh
|
search.product: eADQiWindows 10XVcnh
|
||||||
search.appverid: met150
|
search.appverid: met150
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
ms.mktglfcycl: deploy
|
ms.mktglfcycl: deploy
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
ms.pagetype: security
|
ms.pagetype: security
|
||||||
ms.author: leonidzh
|
ms.author: leonidzh
|
||||||
author: mjcaparas
|
author: mjcaparas
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
manager: dansimp
|
manager: dansimp
|
||||||
audience: ITPro
|
audience: ITPro
|
||||||
ms.collection: M365-security-compliance
|
ms.collection: M365-security-compliance
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 10/07/2018
|
ms.date: 10/07/2018
|
||||||
---
|
---
|
||||||
|
|
||||||
# Get Machines security states collection API
|
# Get Machines security states collection API
|
||||||
|
|
||||||
**Applies to:**
|
**Applies to:**
|
||||||
|
|
||||||
- [Windows Defender Advanced Threat Protection (Windows Defender ATP)](https://go.microsoft.com/fwlink/p/?linkid=2069559)
|
- [Windows Defender Advanced Threat Protection (Windows Defender ATP)](https://go.microsoft.com/fwlink/p/?linkid=2069559)
|
||||||
|
|
||||||
Retrieves a collection of machines security states.
|
Retrieves a collection of machines security states.
|
||||||
|
|
||||||
## Permissions
|
## Permissions
|
||||||
User needs read permissions.
|
User needs read permissions.
|
||||||
|
|
||||||
## HTTP request
|
## HTTP request
|
||||||
```
|
```
|
||||||
GET /testwdatppreview/machinesecuritystates
|
GET /testwdatppreview/machinesecuritystates
|
||||||
```
|
```
|
||||||
|
|
||||||
## Request headers
|
## Request headers
|
||||||
|
|
||||||
Header | Value
|
Header | Value
|
||||||
:---|:---
|
:---|:---
|
||||||
Authorization | Bearer {token}. **Required**.
|
Authorization | Bearer {token}. **Required**.
|
||||||
Content type | application/json
|
Content type | application/json
|
||||||
|
|
||||||
## Request body
|
## Request body
|
||||||
Empty
|
Empty
|
||||||
|
|
||||||
## Response
|
## Response
|
||||||
If successful - 200 OK.
|
If successful - 200 OK.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
**Request**
|
**Request**
|
||||||
|
|
||||||
Here is an example of the request.
|
Here is an example of the request.
|
||||||
|
|
||||||
```
|
```
|
||||||
GET https://graph.microsoft.com/testwdatppreview/machinesecuritystates
|
GET https://graph.microsoft.com/testwdatppreview/machinesecuritystates
|
||||||
Content-type: application/json
|
Content-type: application/json
|
||||||
```
|
```
|
||||||
|
|
||||||
**Response**
|
**Response**
|
||||||
|
|
||||||
Here is an example of the response.
|
Here is an example of the response.
|
||||||
Field *id* contains machine id and equal to the field *id** in machines info.
|
Field *id* contains machine id and equal to the field *id** in machines info.
|
||||||
|
|
||||||
```
|
```
|
||||||
HTTP/1.1 200 OK
|
HTTP/1.1 200 OK
|
||||||
Content-type: application/json
|
Content-type: application/json
|
||||||
{
|
{
|
||||||
"@odata.context":"https://graph.microsoft.com/testwdatppreview/$metadata#MachineSecurityStates",
|
"@odata.context":"https://graph.microsoft.com/testwdatppreview/$metadata#MachineSecurityStates",
|
||||||
"@odata.count":444,
|
"@odata.count":444,
|
||||||
"@odata.nextLink":"https://graph.microsoft.com/testwdatppreview/machinesecuritystates?$skiptoken=[continuation token]",
|
"@odata.nextLink":"https://graph.microsoft.com/testwdatppreview/machinesecuritystates?$skiptoken=[continuation token]",
|
||||||
"value":[
|
"value":[
|
||||||
{
|
{
|
||||||
"id":"000050e1b4afeee3742489ede9ad7a3e16bbd9c4",
|
"id":"000050e1b4afeee3742489ede9ad7a3e16bbd9c4",
|
||||||
"build":14393,
|
"build":14393,
|
||||||
"revision":2485,
|
"revision":2485,
|
||||||
"architecture":"Amd64",
|
"architecture":"Amd64",
|
||||||
"osVersion":"10.0.14393.2485.amd64fre.rs1_release.180827-1809",
|
"osVersion":"10.0.14393.2485.amd64fre.rs1_release.180827-1809",
|
||||||
"propertiesRequireAttention":[
|
"propertiesRequireAttention":[
|
||||||
"AntivirusNotReporting",
|
"AntivirusNotReporting",
|
||||||
"EdrImpairedCommunications"
|
"EdrImpairedCommunications"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
…
|
…
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
Before Width: | Height: | Size: 430 KiB After Width: | Height: | Size: 430 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 862 B After Width: | Height: | Size: 862 B |