> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clustr-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Saved View

> Delete a view you own

Deletes the view. Only the owner can call this.

<Warning>
  **Any Workflow built on this view stops firing.** A Workflow's trigger references
  the view directly; deleting the view leaves the Workflow with nothing to watch.
  Delete or repoint the Workflow first if you want it to keep running.
</Warning>

## Path Parameters

<ParamField path="viewId" type="string" required>
  The view's id.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.clustr-ai.com/api/public/saved-views/3e5f1a22-..." \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": { "message": "Saved view deleted successfully" }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": { "message": "view not found", "code": "NOT_FOUND" }
  }
  ```
</ResponseExample>
