Mutation

create_agent_pool

Creates a new agent pool.

Arguments

input: CreateAgentPoolInput!

The fields used to create a new agent pool.


Input Fields

name(): String!
The name for the new agent pool. This is the name that is displayed on the Burp Suite Enterprise Edition web UI.
description(): String
An optional description of the agent pool.

Return Fields

agent_pool(): AgentPool!
The newly created agent pool.

Example

Query
mutation AddPool($input: CreateAgentPoolInput!) {
  create_agent_pool(input: $input) {
    agent_pool {
      id
      name
      description
    }
  }
}
Variables
{
  "input": {
    "name": "test pool",
    "description": "A test pool"
  }
}