Mutation

create_folder

Creates a new folder in the site tree of Burp Suite Enterprise Edition.

Arguments

input: CreateFolderInput!

The fields used to create a new folder in the site tree.


Input Fields

parent_id(): ID!
The unique identifier of the folder to which you want to add the new folder as a child. To add the folder to the root level, enter 0.
name(): String!
The name for the new folder. This is the name that is displayed on the Burp Suite Enterprise Edition web UI.
scan_configuration_ids(): [ID!]
A list of IDs for scan configurations that you want to use for scans of the sites in this folder or its subfolders.
extension_ids(): [ID!]
A list of extension IDs for extensions that you want to use for scans of sites in this folder or its subfolders.
email_recipients(): [EmailRecipientInput!]
A list of all the email addresses that receive scan reports whenever scans of sites in this folder finish.

Return Fields

folder(): Folder!
The newly created folder.

Example

Query
mutation CreateFolder($input: CreateFolderInput!) {
  create_folder(input: $input) {
    folder {
      id
      name
      parent_id
      scan_configurations {
        id
      }
      extensions {
        id
      }
      email_recipients {
        id
        email
      }
    }
  }
}
Variables
{
  "input": {
    "name": "Production",
    "parent_id": "0",
    "scan_configuration_ids": [],
    "extension_ids": [],
    "email_recipients": [
      {
        "email": "example@portswigger.net"
      }
    ]
  }
}