Skip to content

Update a project finding state (review and/or suppression) or severity

Request

Update a project finding state (review and/or suppression) or severity

Security
bearer-key
Path
projectUuidstringrequired

UUID of the project

findingSnapshotIdstringrequired

UUID of the finding snapshot

Bodyapplication/jsonrequired

Patch operation to apply to the finding

customSeveritystring

If set, it has to be either High, Medium or Low. Case insensitive, all values are converted to have the first letter uppercase and others lowercase, e.g. High.

originstring

Optional, origin used for telemetry.

reviewedboolean
suppressedboolean
suppressionReasonstring

Has to be unset or empty if suppressed is not set or if it's false.

PATCH
/api/v3.0/projects/{projectUuid}/code/findings/{findingSnapshotId}
{ "customSeverity": "string", "origin": "string", "reviewed": true, "suppressed": true, "suppressionReason": "string" }

Responses

OK

Body*/*
additionalDataobject
responseobject(dto.SuccessResponse)
supportTokenstring
Response
{
  "additionalData": {},
  "response": {
    "message": "Operation succeeded",
    "result": null,
    "success": true
  },
  "supportToken": "string"
}