Mutation
create_folder
Creates a new folder in the site tree of Burp Suite Enterprise Edition.
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.
Return Fields
folder():
Folder!
The newly created folder.
Example
Query
mutation CreateFolder($input: CreateFolderInput!) {
create_folder(input: $input) {
folder {
id
name
parent_id
}
}
}
Variables
{
"input": {
"name": "Production",
"parent_id": "0"
}
}