updateIssueSeverity

Updates the severity level of a specific security issue. Allows manual adjustment of issue severity based on additional context or analysis.

Examples

mutation UpdateIssueSeverity($input: UpdateIssueSeverityInput!) {
  updateIssueSeverity(input: $input)
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "input": {
    "issueId": "30966426-oxPolicy_securityCloudScan_100-example",
    "severity": 2
  }
}

Arguments

You can use the following argument(s) to customize your updateIssueSeverity mutation.

Argument
Description
Supported fields

Input containing the issue identifier and the new severity level

issueId String! severity Int!

Fields

Return type: Boolean

Last updated