mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-21 05:13:40 +00:00
Added end punctuation
This commit is contained in:
@ -44,7 +44,7 @@ Not all properties are filterable.
|
||||
|
||||
### Example 1
|
||||
|
||||
Get 10 latest Alerts with related Evidence
|
||||
Get 10 latest Alerts with related Evidence:
|
||||
|
||||
```http
|
||||
HTTP GET https://api.securitycenter.microsoft.com/api/alerts?$top=10&$expand=evidence
|
||||
@ -189,7 +189,7 @@ HTTP GET https://api.securitycenter.microsoft.com/api/alerts?$top=10&$expand=ev
|
||||
|
||||
### Example 2
|
||||
|
||||
Get all the alerts last updated after 2019-11-22 00:00:00
|
||||
Get all the alerts last updated after 2019-11-22 00:00:00:
|
||||
|
||||
```http
|
||||
HTTP GET https://api.securitycenter.microsoft.com/api/alerts?$filter=lastUpdateTime+ge+2019-11-22T00:00:00Z
|
||||
@ -251,7 +251,7 @@ HTTP GET https://api.securitycenter.microsoft.com/api/alerts?$filter=lastUpdate
|
||||
|
||||
### Example 3
|
||||
|
||||
Get all the devices with 'High' 'RiskScore'
|
||||
Get all the devices with 'High' 'RiskScore':
|
||||
|
||||
```http
|
||||
HTTP GET https://api.securitycenter.microsoft.com/api/machines?$filter=riskScore+eq+'High'
|
||||
@ -304,7 +304,7 @@ HTTP GET https://api.securitycenter.microsoft.com/api/machines?$filter=riskScor
|
||||
|
||||
### Example 4
|
||||
|
||||
Get top 100 devices with 'HealthStatus' not equals to 'Active'
|
||||
Get top 100 devices with 'HealthStatus' not equals to 'Active':
|
||||
|
||||
```http
|
||||
HTTP GET https://api.securitycenter.microsoft.com/api/machines?$filter=healthStatus+ne+'Active'&$top=100
|
||||
@ -357,7 +357,7 @@ HTTP GET https://api.securitycenter.microsoft.com/api/machines?$filter=healthSt
|
||||
|
||||
### Example 5
|
||||
|
||||
Get all the devices that last seen after 2018-10-20
|
||||
Get all the devices that last seen after 2018-10-20:
|
||||
|
||||
```http
|
||||
HTTP GET https://api.securitycenter.microsoft.com/api/machines?$filter=lastSeen gt 2018-08-01Z
|
||||
@ -410,7 +410,7 @@ HTTP GET https://api.securitycenter.microsoft.com/api/machines?$filter=lastSeen
|
||||
|
||||
### Example 6
|
||||
|
||||
Get all the Anti-Virus scans that the user Analyst@examples.onmicrosoft.com created using Microsoft Defender for Endpoint
|
||||
Get all the Anti-Virus scans that the user Analyst@examples.onmicrosoft.com created using Microsoft Defender for Endpoint:
|
||||
|
||||
```http
|
||||
HTTP GET https://api.securitycenter.microsoft.com/api/machineactions?$filter=requestor eq 'Analyst@contoso.com' and type eq 'RunAntiVirusScan'
|
||||
|
Reference in New Issue
Block a user