Forum Discussion
baddeacs
Dec 05, 2020Copper Contributor
Azure Sentinel REST API create incident
Trying to create a new incident using https://docs.microsoft.com/en-us/rest/api/securityinsights/incidents/createorupdate 'Tryit' from the above page does not work for Create Incident. The List ...
- Dec 07, 2020
baddeacs In addition to what Sarah_Young wrote about the ID (which should actually be a GUID), the default body listed is not correct. I had to modify it to look like:
{ properties: { severity: "High", status: "New", title: "Example Title" } }
GaryBushey
Dec 07, 2020Bronze Contributor
baddeacs In addition to what Sarah_Young wrote about the ID (which should actually be a GUID), the default body listed is not correct. I had to modify it to look like:
{
properties: {
severity: "High",
status: "New",
title: "Example Title"
}
}
baddeacs
Dec 07, 2020Copper Contributor
GaryBushey Thank you, all good.