{ "opencollection": "1.0.0", "info": { "name": "Looker Auth Dashboard API", "version": "4.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Dashboard", "type": "folder" }, "items": [ { "info": { "name": "Looker List All Dashboards", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.looker.com/api/4.0/dashboards", "params": [ { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of field names to include in the response. Use this to limit response payload and improve performance." } ] }, "docs": "Returns a list of all dashboards accessible to the authenticated user. User-defined dashboards and LookML dashboards are both included. Use the fields parameter to limit response size." }, { "info": { "name": "Looker Create a Dashboard", "type": "http" }, "http": { "method": "POST", "url": "https://{instance}.looker.com/api/4.0/dashboards", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new user-defined dashboard. The dashboard can be populated with tiles, filters, and layout settings after creation or as part of the request body." }, { "info": { "name": "Looker Search Dashboards", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.looker.com/api/4.0/dashboards/search", "params": [ { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of field names to include in the response. Use this to limit response payload and improve performance." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip before returning results" }, { "name": "title", "value": "", "type": "query", "description": "Filter by dashboard title" }, { "name": "description", "value": "", "type": "query", "description": "Filter by dashboard description" }, { "name": "space_id", "value": "", "type": "query", "description": "Filter by space (folder) ID" }, { "name": "user_id", "value": "", "type": "query", "description": "Filter by creator user ID" }, { "name": "sorts", "value": "", "type": "query", "description": "Sort fields" } ] }, "docs": "Searches for dashboards matching the specified criteria including title, description, space, and creator. Results are paginated." }, { "info": { "name": "Looker Get a Dashboard", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.looker.com/api/4.0/dashboards/:dashboard_id", "params": [ { "name": "dashboard_id", "value": "", "type": "path", "description": "The dashboard ID. Numeric for user-defined dashboards or model::dashboard_name for LookML dashboards." }, { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of field names to include in the response. Use this to limit response payload and improve performance." } ] }, "docs": "Retrieves a single dashboard by its ID, including all dashboard elements (tiles), filters, and layout configuration. For user-defined dashboards the ID is numeric; for LookML dashboards the ID is the model::dashboard_name string." }, { "info": { "name": "Looker Update a Dashboard", "type": "http" }, "http": { "method": "PATCH", "url": "https://{instance}.looker.com/api/4.0/dashboards/:dashboard_id", "params": [ { "name": "dashboard_id", "value": "", "type": "path", "description": "The dashboard ID. Numeric for user-defined dashboards or model::dashboard_name for LookML dashboards." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing dashboard. Only the fields provided in the request body are updated. Dashboard elements and filters can be updated through their own dedicated endpoints." }, { "info": { "name": "Looker Delete a Dashboard", "type": "http" }, "http": { "method": "DELETE", "url": "https://{instance}.looker.com/api/4.0/dashboards/:dashboard_id", "params": [ { "name": "dashboard_id", "value": "", "type": "path", "description": "The dashboard ID. Numeric for user-defined dashboards or model::dashboard_name for LookML dashboards." } ] }, "docs": "Permanently deletes the specified dashboard and all of its elements, filters, and layout configuration. This action cannot be undone." }, { "info": { "name": "Looker List Dashboard Elements", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.looker.com/api/4.0/dashboards/:dashboard_id/dashboard_elements", "params": [ { "name": "dashboard_id", "value": "", "type": "path", "description": "The dashboard ID. Numeric for user-defined dashboards or model::dashboard_name for LookML dashboards." }, { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of field names to include in the response. Use this to limit response payload and improve performance." } ] }, "docs": "Returns all elements (tiles) for the specified dashboard. Each element contains a query, a Look reference, or a text/markdown content block along with positioning and size information." }, { "info": { "name": "Looker List Dashboard Filters", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.looker.com/api/4.0/dashboards/:dashboard_id/dashboard_filters", "params": [ { "name": "dashboard_id", "value": "", "type": "path", "description": "The dashboard ID. Numeric for user-defined dashboards or model::dashboard_name for LookML dashboards." }, { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of field names to include in the response. Use this to limit response payload and improve performance." } ] }, "docs": "Returns all filters defined on the specified dashboard. Dashboard filters allow users to dynamically change query parameters across all tiles that listen to a given filter." } ] } ], "bundled": true }