setIssueOwner

Sets a manual override for the owner of a specific security issue. Replaces the automatically calculated owner with a manually specified one.

Examples

mutation SetIssueOwner($input: SetIssueOwnerInput!) {
  setIssueOwner(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",
    "ownerName": "example",
    "ownerEmail": "example"
  }
}

Arguments

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

Argument
Description
Supported fields

input SetIssueOwnerInput! required

Input containing the issue identifier and the new owner details

issueId String! ownerName String ownerEmail String!

Fields

Return type: Boolean

Last updated