raise_incident
Related Concepts: Case Manipulation
This function raises the given case with the alert identifier as incident.
siemplify.raise_incident(case_id, alert_identifier)
Parameters
Param Name | Param Type | Possible Values | Comments | Mandatory Parameter |
---|---|---|---|---|
case_id | string | 234 | Unique Case Identifier | Yes |
alert_identifier | string | ad6879f1-b72d-419f-990c-011a2526b16d | N/A | Yes |
Return Type
NoneType
Example
Sample code
from SiemplifyAction import SiemplifyAction
siemplify = SiemplifyAction()
alert_identifier = "ad6879f1-b72d-419f-990c-011a2526b16d"
case_id = "234"
siemplify.raise_incident(case_id=case_id, alert_identifier=alert_identifier)
Result Behavior
The case 234 will be raised as incident.
Result Value
None