Mutation
delete_site
Permanently removes a site from the site tree in Burp Suite Enterprise Edition. Note that when you delete a site, all of the associated data is also deleted. This includes any scans that were performed on the site and their results.
Input Fields
id():
ID!
The unique identifier of the site that you want to delete.
Return Fields
id():
ID
The unique identifier of the site that was deleted.
Example
Query
mutation DeleteSite($input: DeleteSiteInput!) {
delete_site(input: $input) {
id
}
}
Variables
{
"input": {
"id": "40"
}
}