Object
AgentPool
A pool to which agents can be assigned to dedicate agents to specific sites
Example
Query
query GetAgentPools {
agent_pools {
id
name
description
agents {
id
name
}
sites {
id
}
}
}
Result
{
"data": {
"agent_pools": [
{
"id": "-1",
"name": "Default pool",
"description": "By default, all scanning machines will belong to this pool unless you reassign them.",
"agents": [],
"sites": []
}
]
}
}