Skip to content

Commit dce35bf

Browse files
committed
adding API content
1 parent 7c7064e commit dce35bf

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

articles/sentinel/move-to-defender.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,33 @@ For more information, see [Automation in the Microsoft Defender portal](/azure/s
124124

125125
The unified experience in the Defender portal introduces notable changes to incidents and alerts from APIs. It supports API calls based on the [Microsoft Graph REST API v1.0](/graph/api/resources/security-api-overview?view=graph-rest-1.0), which can be used for automation related to alerts, incidents, advanced hunting, and more.
126126

127-
The [Microsoft Sentinel API](/rest/api/securityinsights/api-versions) continues to support actions against Microsoft Sentinel resources, like analytics rules, automation rules and more. For interacting with unified incidents and alerts, we recommend that you use the Microsoft Graph REST API.
127+
The [Microsoft Sentinel `SecurityInsights` API](/rest/api/securityinsights/api-versions) continues to support actions against Microsoft Sentinel resources, like analytics rules, automation rules and more. For interacting with unified incidents and alerts, we recommend that you use the Microsoft Graph REST API.
128128

129-
If you're using the Microsoft Sentinel `SecurityInsights` API to interact with Microsoft Sentinel incidents, you may need to update your automation conditions and trigger criteria due to changes in the response body. For more information, see [API responses](/azure/sentinel/microsoft-sentinel-defender-portal?branch=pr-en-us-299307#api-responses). <!--fix link-->
129+
For example, when using an HTTP GET command for a specific unified incident with the Microsoft Graph REST API, the body response has the following differences:
130130

131+
- The `incidentWebUrl` field provides the direct link to the incident, which can be used to synchronize this information with a third-party ticketing system like ServiceNow.
132+
133+
- If the response doesn't contain the `alertProductNames` array, retrieve it by updating the initial HTTP GET command to add `?$expand=alerts` after the GET command. For example: `https://graph.microsoft.com/v1.0/security/incidents/368?$expand=alerts`
134+
135+
If you're using the Microsoft Sentinel `SecurityInsights` API to interact with Microsoft Sentinel incidents, you may need to update your automation conditions and trigger criteria due to changes in the response body.
136+
137+
The following table lists fields that are important in the response snippets, and compares them across the Azure and Defender portals:
138+
139+
|Functionality | Azure portal |Defender portal |
140+
|---------|---------|---------|
141+
|The source that triggered the detection and published the alert | `alertProductNames` | `productName` |
142+
|Link to the incident | `incidentUrl`, links to the incident in Microsoft Sentinel in the Azure portal | `providerIncidentUrl`, links to the incident in the Defender portal |
143+
|The name of the alert provider | `providerName` | `providerName` always shows as `Microsoft XDR` |
144+
145+
The following table lists all elements that are added or changed in the Microsoft Sentinel `SecurityInsights` API after onboarding your workspace to the Defender portal:
146+
147+
| Field | Change Description |
148+
|----------------------|----------|
149+
| `detectionSource` | Added. The detection technology or sensor that identified the notable component or activity. |
150+
| `productName` | Added. The name of the product that published this alert. |
151+
| `providerIncidentUrl`| Added. Provides the direct URL to the incident in the unified portal. |
152+
| `providerName` | Updated. The providerName field value has been changed from *"Azure Sentinel"* to *"Microsoft XDR"*. |
153+
| `serviceSource` | Added. The service or product that created the alert. |
131154

132155
## Run operations in the Defender portal
133156

0 commit comments

Comments
 (0)