scriptTasksCancel
mutation
Issue a command to cancel a scheduled script for the specified task. Only scripts in the SCHEDULED state can be canceled. ScriptTasksCancelMutationResponse!
Arguments
input
ScriptTasksCancelMutationInput!
required
Example Operation
# N-able GraphQL Operation

mutation ScriptTasksCancel($input: ScriptTasksCancelMutationInput!) {
  scriptTasksCancel(input: $input) {
    items {
      id
      failureReason
    }
    errors {
      ... on ScriptTaskCancelNotFoundError {
        scriptTaskId
        message
      }
      ... on ScriptTaskCancelValidationError {
        scriptTaskId
        message
      }
    }
  }
}