List AI Agents
GET
/api/v3/organizations/{organisation}/ai/agents
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/agents';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/agents \ --header 'Authorization: Bearer <token>'Lists all AI agents for an organization. Agents are pre-configured AI assistants with specific system prompts, model settings, and tool permissions. * * Features: * - Filter by group (e.g., ‘development’, ‘compliance’) * - Organization-scoped * - Returns agent configurations without execution history
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
Query Parameters
Section titled “Query Parameters”group
string
Optional group filter (e.g., ‘development’, ‘compliance’)
Responses
Section titled “Responses”List of agents retrieved successfully
Media typeapplication/json
object
agents
Array<object>
object
agentId
string format: uuid
name
string
description
string
group
string
modelId
string
temperature
number
maxTokens
integer
allowedTools
Array<string>
assignedSkills
Array<string>
longContext
boolean
guardrailPreset
string
isGlobal
boolean
hasOverlay
boolean
createdAt
string format: date-time
updatedAt
string format: date-time
Examplegenerated
{ "agents": [ { "agentId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "description": "example", "group": "example", "modelId": "example", "temperature": 1, "maxTokens": 1, "allowedTools": [ "example" ], "assignedSkills": [ "example" ], "longContext": true, "guardrailPreset": "example", "isGlobal": true, "hasOverlay": true, "createdAt": "2026-04-15T12:00:00Z", "updatedAt": "2026-04-15T12:00:00Z" } ]}Access denied
Failed to retrieve agents
