Object

UnauthorizedAgent

An agent machine that you have configured but whose connection to the Enterprise server you have not yet authorized. All new agent machines must be authorized before they can communicate with the Enterprise server and run scans.

Fields

machine_id(): ID!
The unique identifier of the machine that you have configured for use as an agent machine.
ip(): String!
The IP address of the machine that is configured for use as an agent machine.

Example

Query
query GetUnauthorizedAgents {
  unauthorized_agents {
    ip
  }
}
Result
{
  "data": {
    "unauthorized_agents": [
      {
        "ip": "127.0.0.1"
      }
    ]
  }
}