{ "opencollection": "1.0.0", "info": { "name": "Sisense REST Authentication Dashboards API", "version": "v1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Dashboards", "type": "folder" }, "items": [ { "info": { "name": "List Dashboards", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/api/v1/dashboards", "params": [ { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of fields to include in response" }, { "name": "sort", "value": "", "type": "query", "description": "Field to sort by (prefix with - for descending)" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "skip", "value": "", "type": "query", "description": "Number of results to skip for pagination" }, { "name": "expand", "value": "", "type": "query", "description": "Replace foreign key IDs with full entity objects" } ] }, "docs": "Returns a list of dashboards accessible to the authenticated user. Supports filtering by various attributes." }, { "info": { "name": "Create Dashboard", "type": "http" }, "http": { "method": "POST", "url": "https://{host}/api/v1/dashboards", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new dashboard in Sisense." }, { "info": { "name": "Get Dashboard", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/api/v1/dashboards/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Dashboard identifier" }, { "name": "fields", "value": "", "type": "query", "description": "Fields to include in response" } ] }, "docs": "Returns a specific dashboard by ID." }, { "info": { "name": "Delete Dashboard", "type": "http" }, "http": { "method": "DELETE", "url": "https://{host}/api/v1/dashboards/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Dashboard identifier" } ] }, "docs": "Deletes a dashboard by ID." }, { "info": { "name": "List All Dashboards (Admin)", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/api/v1/dashboards/admin", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "skip", "value": "", "type": "query" } ] }, "docs": "Admin endpoint that returns all dashboards across all users. Requires admin privileges." } ] } ], "bundled": true }