{ "opencollection": "1.0.0", "info": { "name": "Unisson agent-evals agents API", "version": "1.0.0" }, "items": [ { "info": { "name": "agents", "type": "folder" }, "items": [ { "info": { "name": "List Agents", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/agents", "params": [ { "name": "search", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List all agents for the organization, enriched with per-agent run\nstats (count + total runtime) used by the Home agent cards.\n\nSupports optional case-insensitive ``search`` against name/description and\nan optional ``limit`` cap (used by the global search palette)." }, { "info": { "name": "Create Agent", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/agents", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new agent." }, { "info": { "name": "List Templates", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/agents/templates", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List available pre-built agent templates." }, { "info": { "name": "Generate Agent From Description", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/agents/generate-from-description", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Generate a draft agent (name, description, instructions) from a free-text\nprompt. Used by the \"+ Create Agent\" entry point to seed the builder modal." }, { "info": { "name": "Improve Agent Instructions", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/agents/improve-instructions", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Rewrite an agent's instructions to incorporate user-provided refinements.\nStateless: operates on the instructions text passed in (which may include\nunsaved edits), not on any persisted agent." }, { "info": { "name": "Create From Template", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/agents/from-template/:template_id", "params": [ { "name": "template_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create an agent from a pre-built template." }, { "info": { "name": "Get Agent", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/agents/:agent_id", "params": [ { "name": "agent_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a single agent with all relationships." }, { "info": { "name": "Update Agent", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/v1/agents/:agent_id", "params": [ { "name": "agent_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update an agent." }, { "info": { "name": "Delete Agent", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/agents/:agent_id", "params": [ { "name": "agent_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Soft-delete an agent." }, { "info": { "name": "List Instruction Versions", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/agents/:agent_id/instruction-versions", "params": [ { "name": "agent_id", "value": "", "type": "path" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "An agent's instruction version history, newest first." }, { "info": { "name": "Get Instruction Version", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/agents/:agent_id/instruction-versions/:version_id", "params": [ { "name": "agent_id", "value": "", "type": "path" }, { "name": "version_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "A single instruction version (full text)." }, { "info": { "name": "Revert Instruction Version", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/agents/:agent_id/instruction-versions/:version_id/revert", "params": [ { "name": "agent_id", "value": "", "type": "path" }, { "name": "version_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Restore the agent's instructions to a prior version (members only).\n\nAppends a new ``revert`` version — history is never rewritten." }, { "info": { "name": "List Agent Files", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/agents/:agent_id/files", "params": [ { "name": "agent_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List files in the agent's filesystem." }, { "info": { "name": "Upload Agent File", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/agents/:agent_id/files", "params": [ { "name": "agent_id", "value": "", "type": "path" } ], "body": { "type": "multipart-form", "data": [] }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Upload a file to the agent's filesystem." }, { "info": { "name": "Delete Agent File", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/agents/:agent_id/files/:filename", "params": [ { "name": "agent_id", "value": "", "type": "path" }, { "name": "filename", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a file from the agent's filesystem." } ] } ], "bundled": true }