Get Agent Overlay
GET
/api/v3/organizations/{organisation}/ai/agents/{agentId}/overlay
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/agents/example/overlay';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/example/overlay \ --header 'Authorization: Bearer <token>'Returns the per-organisation overlay for a global agent, plus base agent metadata for UI context. If no overlay exists the response contains overlay: null. Overlays can only be created for global agents.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
agentId
required
string
Global agent identifier (e.g., ‘quantgov-code’)
Responses
Section titled “Responses”Overlay retrieved (may be null if none set)
Media typeapplication/json
object
overlay
object
modelId
string
temperature
number
maxTokens
integer
disabledSkills
Array<string>
additionalSkills
Array<string>
additionalTools
Array<string>
disabledTools
Array<string>
systemPromptAppend
string
allowedCollections
Array<string>
guardrailPreset
string
version
integer
base
Base global agent metadata
object
agentId
string
name
string
modelId
string
allowedTools
Array<string>
assignedSkillIds
Array<string>
Examplegenerated
{ "overlay": { "modelId": "example", "temperature": 1, "maxTokens": 1, "disabledSkills": [ "example" ], "additionalSkills": [ "example" ], "additionalTools": [ "example" ], "disabledTools": [ "example" ], "systemPromptAppend": "example", "allowedCollections": [ "example" ], "guardrailPreset": "example", "version": 1 }, "base": { "agentId": "example", "name": "example", "modelId": "example", "allowedTools": [ "example" ], "assignedSkillIds": [ "example" ] }}Access denied
Not a global agent
Failed to retrieve overlay
