Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.security
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Input parameters for the createAlert action, including alert metadata and inline entity definitions.
Properties
| Property | Type | Description |
|---|---|---|
| category | String | MITRE ATT&CK category for the alert. |
| description | String | Free-text explanation of the suspicious activity or policy violation. |
| entityDefinitions | microsoft.graph.security.entityDefinition collection | Inline entity definitions that associate entities with the alert. |
| isExcludedFromCorrelation | Boolean | Whether the alert is excluded from automatic correlation. Defaults to false. |
| linkToIncident | Int64 | Incident ID to link the alert to. Use 0 or omit the value to create a new incident. |
| mitreTechniques | String collection | MITRE ATT&CK technique identifiers associated with the alert. |
| recommendedActions | String | Recommended remediation actions for the alert. |
| sentinelWorkspace | String | Microsoft Sentinel workspace identifier used for workspace routing. |
| severity | microsoft.graph.security.alertSeverity | Severity level of the alert. The possible values are: unknown, informational, low, medium, high, unknownFutureValue. |
| title | String | Short display name shown for the alert in the Defender portal. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.createAlertInput",
"category": "String",
"description": "String",
"entityDefinitions": [
{
"@odata.type": "microsoft.graph.security.entityDefinition"
}
],
"isExcludedFromCorrelation": "Boolean",
"linkToIncident": "Int64",
"mitreTechniques": ["String"],
"recommendedActions": "String",
"sentinelWorkspace": "String",
"severity": "String",
"title": "String"
}