{ "opencollection": "1.0.0", "info": { "name": "Metabase Cards Dashboards API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Dashboards", "type": "folder" }, "items": [ { "info": { "name": "List dashboards", "type": "http" }, "http": { "method": "GET", "url": "https://your-metabase-instance.com/api/dashboard" }, "docs": "List dashboards" }, { "info": { "name": "Create a dashboard", "type": "http" }, "http": { "method": "POST", "url": "https://your-metabase-instance.com/api/dashboard", "body": { "type": "json", "data": "{}" } }, "docs": "Create a dashboard" }, { "info": { "name": "Get a dashboard", "type": "http" }, "http": { "method": "GET", "url": "https://your-metabase-instance.com/api/dashboard/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get a dashboard" }, { "info": { "name": "Update a dashboard", "type": "http" }, "http": { "method": "PUT", "url": "https://your-metabase-instance.com/api/dashboard/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a dashboard" }, { "info": { "name": "Archive a dashboard", "type": "http" }, "http": { "method": "DELETE", "url": "https://your-metabase-instance.com/api/dashboard/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Archive a dashboard" } ] } ], "bundled": true }