Update Alert Status
PATCH/v1/alerts/id/:id/status/:status
Update the status for a specific DDR alert to reflect the status of the investigation in Prisma Cloud DSPM. This call updates the status of a specific alert (specified by the alert ID) to one of the available statuses.
Request
Path Parameters
id int64required
status stringrequired
Possible values: [OPEN
, UNIMPORTANT
, WRONG
, HANDLED
, INVESTIGATING
]
Header Parameters
dig-api-key stringrequired
Dig token header
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
alertId int64
oldStatus string
Possible values: [OPEN
, UNIMPORTANT
, WRONG
, HANDLED
, INVESTIGATING
]
newStatus string
Possible values: [OPEN
, UNIMPORTANT
, WRONG
, HANDLED
, INVESTIGATING
]
{
"alertId": 0,
"oldStatus": "OPEN",
"newStatus": "OPEN"
}
Loading...