Mutation
delete_scan
Permanently removes a scan from Burp Suite Enterprise Edition. Note that you cannot delete a scan that is currently running. To delete a running scan, you need to cancel it first. Deleting a scan also removes all of the data that it generated, such as any issues that it found.
Input Fields
id():
ID!
The unique identifier of the scan that you want to delete.
Return Fields
id():
ID!
The unique identifier of the scan that was deleted.
Example
Query
mutation DeleteScan($input: DeleteScanInput!) {
delete_scan(input: $input) {
id
}
}
Variables
{
"input": {
"id": "14"
}
}