mark_case_as_important
Related Concepts Case Manipulation
This function marks the current case with given alert identifier as important.
siemplify.mark_case_as_important(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.mark_case_as_important(case_id=case_id, alert_identifier=alert_identifier)
Result Behavior
The case with the provided alert identifier will be marked as important.
Result Value
None