Mutation

delete_scan_configuration

Permanently removes an existing scan configuration from Burp Suite Enterprise Edition.

Arguments

input: DeleteScanConfigurationInput!

The fields used to specify which scan configuration you want to delete.


Input Fields

id(): ID!
The unique identifier of the scan configuration that you want to delete.
force(): Boolean
Determines whether the scan configuration will be deleted even if there are warnings, for example, when the scan configuration is currently in use.

Return Fields

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

Example

Query
mutation DeleteScanConfiguration($input: DeleteScanConfigurationInput!) {
  delete_scan_configuration(input: $input) {
    id
  }
}
Variables
{
  "input": {
    "id": "bf485090-ad46-42ae-a0b1-ff642aa6836d"
  }
}