For the complete documentation index, see llms.txt. This page is also available as Markdown.

cancelReportFalsePositiveIssueV2

Cancels the false positive status of an issue and returns the operation result including the aggregations status.

Examples

mutation CancelReportFalsePositiveIssueV2($input: cancelReportFalsePositiveIssueInput!) {
  cancelReportFalsePositiveIssueV2(input: $input) {
    success
    aggregationsStatus
  }
}

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",
    "comment": "some comment",
    "aggIds": ["example"]
  }
}
curl -X POST \
https://api.cloud.ox.security/api/apollo-gateway \
-H 'Content-Type: application/json' \
-H 'Authorization: YOUR_API_TOKEN' \
-d '{
 "query": "mutation CancelReportFalsePositiveIssueV2($input: cancelReportFalsePositiveIssueInput!) { cancelReportFalsePositiveIssueV2(input: $input) { success aggregationsStatus } }",
 "variables": {
    "input": {
      "issueId": "30966426-oxPolicy_securityCloudScan_100-example",
      "comment": "some comment",
      "aggIds": ["example"]
    }
  }
}'

Arguments

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

Argument
Description
Supported fields

issueId String! comment String aggIds [String]

Fields

Return type: FalsePositiveResponse

You can use the following field(s) to specify what information your cancelReportFalsePositiveIssueV2 mutation will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

success Boolean!

Whether the operation was successful

aggregationsStatus String

Status of aggregations for display in UI

Last updated