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

# Delete Note

Delete a note by ID.

## Authorization

Requires user permission `features.notes` or admin role, plus write access to the note.

## Path Parameters

<ParamField path="id" type="string" required>
  Unique identifier of the note to delete
</ParamField>

## Response

Returns a boolean indicating successful deletion.

<ResponseField name="success" type="boolean" required>
  Returns `true` when the note is successfully deleted
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://your-domain.com/api/notes/note_abc123/delete" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  true
  ```

  ```json 401 Unauthorized theme={null}
  {
    "detail": "Unauthorized"
  }
  ```

  ```json 403 Forbidden theme={null}
  {
    "detail": "An error occurred"
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "detail": "Not Found"
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "detail": "An error occurred"
  }
  ```
</ResponseExample>

## Access Control

* Users must have `features.notes` permission enabled
* User must be the note owner OR have write access via access grants
* Admin users can delete any note
* Deletion is permanent and cannot be undone
* Associated access grants are automatically removed
