Mutation

cancel_scan

Cancels a scan that is currently scheduled or running in Burp Suite Enterprise Edition.

Arguments

input: CancelScanInput!

The fields used to specify which scan you want to cancel.


Input Fields

id(): ID!
The unique identifier of the scan that you want to cancel.

Return Fields

id(): ID
The unique identifier of the scan that was cancelled.

Example

Query
mutation CancelScan($input: CancelScanInput!) {
  cancel_scan(input: $input) {
    id
  }
}
Variables
{
  "input": {
    "id": "24"
  }
}