Mutation
cancel_scan
Cancels a scan that is currently scheduled or running in Burp Suite Enterprise Edition.
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"
}
}