{ "opencollection": "1.0.0", "info": { "name": "openobserve Actions Saved Views API", "version": "0.90.0" }, "items": [ { "info": { "name": "Saved Views", "type": "folder" }, "items": [ { "info": { "name": "List saved views", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/:org_id/savedviews", "params": [ { "name": "org_id", "value": "", "type": "path", "description": "Organization name" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Retrieves a list of all saved search views for the organization. This provides an overview of all stored queries and visualizations that users have created and saved for reuse. Each view includes basic metadata such as name and ID, allowing users to identify and select the views they want to load." }, { "info": { "name": "Create a new saved view", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/:org_id/savedviews", "params": [ { "name": "org_id", "value": "", "type": "path", "description": "Organization name" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Creates a saved search view with specified query parameters and filters" }, { "info": { "name": "Get saved view", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/:org_id/savedviews/:view_id", "params": [ { "name": "org_id", "value": "", "type": "path", "description": "Organization name" }, { "name": "view_id", "value": "", "type": "path", "description": "The view_id which was stored" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Retrieves a specific saved search view by its ID. Saved views allow users to store and reuse complex search queries, filters, and visualization settings. The view contains all the necessary information to recreate the exact search state, including query parameters, time ranges, and display configurations." }, { "info": { "name": "Update an existing saved view", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/:org_id/savedviews/:view_id", "params": [ { "name": "org_id", "value": "", "type": "path", "description": "Organization name" }, { "name": "view_id", "value": "", "type": "path", "description": "View id to be updated" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Updates the configuration and parameters of an existing saved search view" }, { "info": { "name": "Delete saved view", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/:org_id/savedviews/:view_id", "params": [ { "name": "org_id", "value": "", "type": "path", "description": "Organization name" }, { "name": "view_id", "value": "", "type": "path", "description": "The view_id to delete" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Permanently removes a saved search view from the organization. This action deletes the stored query configuration, visualization settings, and all associated metadata. Once deleted, the view cannot be recovered, so use this operation carefully when cleaning up unused or outdated saved views." } ] } ], "bundled": true }