Update Risk Finding Status
PATCH/v1/risk-findings/id/:id/status/:status
Update the status for a specific risk finding to reflect the status of the investigation in Prisma Cloud DSPM. This call allows for updating the status of a specific risk finding (specified by the finding ID) to one of the available statuses.
Request
Path Parameters
id stringrequired
status stringrequired
Possible values: [OPEN
, CLOSED
, UNIMPORTANT
, WRONG
, HANDLED
, INVESTIGATING
]
Header Parameters
dig-api-key stringrequired
Dig token header
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
riskFindingId string
oldStatus string
Possible values: [OPEN
, CLOSED
, UNIMPORTANT
, WRONG
, HANDLED
, INVESTIGATING
]
newStatus string
Possible values: [OPEN
, CLOSED
, UNIMPORTANT
, WRONG
, HANDLED
, INVESTIGATING
]
{
"riskFindingId": "string",
"oldStatus": "OPEN",
"newStatus": "OPEN"
}
Loading...