KSC Open API
Kaspersky Security Center API description
|
Modifies properties of an existing incident.
Remarks:
The following attributes cannot be updated:
See also how to use the KlAkOAPI Python package: server = KlAkOAPI.AdmServer.KlAkAdmServer.Create("https://ksc.example.com:13299", "username", "password", verify = False) oHostGroup = KlAkOAPI.HostGroup.KlAkHostGroup(server) # ID of the incident to change attributes lId = ... # change the incident attributes oHostGroup.UpdateIncident(lId, {"KLINCDT_BODY": "New test incident body"}) |