{ "opencollection": "1.0.0", "info": { "name": "Amigo Account Agents API", "version": "0.1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Agents", "type": "folder" }, "items": [ { "info": { "name": "List agents", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/agents", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "search", "value": "", "type": "query" }, { "name": "sort_by", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "continuation_token", "value": "", "type": "query" } ] }, "docs": "List agents in a workspace with pagination. Requires `Agent.view` permission." }, { "info": { "name": "Create an agent", "type": "http" }, "http": { "method": "POST", "url": "https://api.amigo.ai/v1/:workspace_id/agents", "params": [ { "name": "workspace_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new agent in a workspace. Requires `Agent.create` permission." }, { "info": { "name": "Get an agent", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/agents/:agent_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "agent_id", "value": "", "type": "path" } ] }, "docs": "Retrieve an agent by ID. Requires `Agent.view` permission." }, { "info": { "name": "Update an agent", "type": "http" }, "http": { "method": "PUT", "url": "https://api.amigo.ai/v1/:workspace_id/agents/:agent_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "agent_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an agent's name or description. Requires `Agent.update` permission." }, { "info": { "name": "Delete an agent", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.amigo.ai/v1/:workspace_id/agents/:agent_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "agent_id", "value": "", "type": "path" } ] }, "docs": "Delete an agent. Agent versions are retained. Requires `Agent.delete` permission." }, { "info": { "name": "List agent versions", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/agents/:agent_id/versions", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "agent_id", "value": "", "type": "path" }, { "name": "sort_by", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "continuation_token", "value": "", "type": "query" } ] }, "docs": "List versions of an agent with pagination. Requires `Agent.view` permission." }, { "info": { "name": "Create an agent version", "type": "http" }, "http": { "method": "POST", "url": "https://api.amigo.ai/v1/:workspace_id/agents/:agent_id/versions", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "agent_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new version of an agent. Version number is auto-incremented. Requires `Agent.create` permission for the first version and `Agent.update` permission afterward." }, { "info": { "name": "Get an agent version", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/agents/:agent_id/versions/:version", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "agent_id", "value": "", "type": "path" }, { "name": "version", "value": "", "type": "path" } ] }, "docs": "Retrieve a specific agent version by number, or 'latest'. Requires `Agent.view` permission." } ] } ], "bundled": true }