Forum Discussion
baddeacs
Dec 10, 2020Copper Contributor
Azure Sentinel REST API update existing incident - version conflict error
Attempting to close an existing incident using PUT REST Api for create /update incident: using this request body { properties: { severity: "High", "classification": "Undetermi...
- Dec 10, 2020You need to retrieve and provide the 'etag' value in your put request.
So you need to do a get for the incident first, retrieve the 'etag' property from there and then provide the etag value in your new request
Thijs Lecomte
Dec 10, 2020Bronze Contributor
You need to retrieve and provide the 'etag' value in your put request.
So you need to do a get for the incident first, retrieve the 'etag' property from there and then provide the etag value in your new request
So you need to do a get for the incident first, retrieve the 'etag' property from there and then provide the etag value in your new request
baddeacs
Dec 11, 2020Copper Contributor
Thijs Lecomte Thank you!