{ "opencollection": "1.0.0", "info": { "name": "Cribl As Code API Credentials Saved Searches API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Saved Searches", "type": "folder" }, "items": [ { "info": { "name": "List all saved searches", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.cribl.cloud/search/saved" }, "docs": "Retrieves all saved search queries that can be reused and shared across teams." }, { "info": { "name": "Create a saved search", "type": "http" }, "http": { "method": "POST", "url": "https://gateway.cribl.cloud/search/saved", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new saved search query for reuse and sharing with other team members." }, { "info": { "name": "Get a saved search by ID", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.cribl.cloud/search/saved/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" } ] }, "docs": "Retrieves the configuration of a specific saved search query." }, { "info": { "name": "Update a saved search", "type": "http" }, "http": { "method": "PATCH", "url": "https://gateway.cribl.cloud/search/saved/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the configuration of an existing saved search query." }, { "info": { "name": "Delete a saved search", "type": "http" }, "http": { "method": "DELETE", "url": "https://gateway.cribl.cloud/search/saved/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" } ] }, "docs": "Deletes a saved search by its unique ID." } ] } ], "bundled": true }