{ "opencollection": "1.0.0", "info": { "name": "Amigo Account Dashboards API", "version": "0.1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Dashboards", "type": "folder" }, "items": [ { "info": { "name": "List Dashboards", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/dashboards", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "page_context", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "continuation_token", "value": "", "type": "query" } ] }, "docs": "List Dashboards" }, { "info": { "name": "Create Dashboard", "type": "http" }, "http": { "method": "POST", "url": "https://api.amigo.ai/v1/:workspace_id/dashboards", "params": [ { "name": "workspace_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create Dashboard" }, { "info": { "name": "Get Dashboard", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/dashboards/:dashboard_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "dashboard_id", "value": "", "type": "path" } ] }, "docs": "Get Dashboard" }, { "info": { "name": "Update Dashboard", "type": "http" }, "http": { "method": "PUT", "url": "https://api.amigo.ai/v1/:workspace_id/dashboards/:dashboard_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "dashboard_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update Dashboard" }, { "info": { "name": "Delete Dashboard", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.amigo.ai/v1/:workspace_id/dashboards/:dashboard_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "dashboard_id", "value": "", "type": "path" } ] }, "docs": "Delete Dashboard" }, { "info": { "name": "Get Dashboard By Slug", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/dashboards/by-slug/:slug", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "slug", "value": "", "type": "path" } ] }, "docs": "Get Dashboard By Slug" }, { "info": { "name": "Execute Dashboard", "type": "http" }, "http": { "method": "POST", "url": "https://api.amigo.ai/v1/:workspace_id/dashboards/:dashboard_id/execute", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "dashboard_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Execute all panel queries and return results for rendering.\n\nSQL injection is mitigated by ResearchQueryService.execute_sql, which calls\n_validate_read_only_sql to block DROP/TRUNCATE/ALTER/CREATE/GRANT/REVOKE/\nDELETE/UPDATE/INSERT statements. Catalog-level access is further restricted\nby the service principal's Databricks grants (read-only on analytics catalog).\n\nEvery panel query MUST reference the ``:ws_id`` parameter so that\nResearchQueryService binds it to the requesting workspace. Queries\n" } ] } ], "bundled": true }