Help documentation

 

Agent API

A collection of APIs to get information and do operations on agents. They allow Go administrators to provision and de-provision agents without needing to use the web interface.

List Agents

Key

Parameters
URL format HTTP Verb Data Explanation
http://[server]/go/api/agents GET no parameters List all the agents of the Go Server in JSON format along with the their information.

The following information about each of the agents is returned in the JSON response:

  • uuid
  • buildLocator
  • agent_name: (Maps to "Agent Name" column of Agents tab)
  • ipAddress: (Maps to "IP Address" column of Agents tab)
  • status: (Maps to "Status" column of Agents tab)
  • sandbox: (Maps to "Sandbox" column of Agents tab)
  • os: (Maps to "OS" column of Agents tab)
  • free_space: (Maps to "Free Space" column of Agents tab)
  • resources: [] (Maps to "Resources" column of Agents tab)
  • environments: [] (Maps to "Environments" column of Agents tab)

Enable and Disable Agent

Delete Agent

Examples