List all agents
GET/agents
Returns a list of all available agents running in the system
Responses
- 200
A successful response containing a list of agents
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
agentsobject[]
iduuid
Unique identifier for the agent
namestring
Name of the agent
clientsstring[]
List of client interfaces the agent is connected to
{
"agents": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"clients": [
"string"
]
}
]
}