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

# bookmarks.delete()

> Delete a bookmark from a repository.

Delete a bookmark.

**Required scope: `write`**

```python theme={null}
result = await mesa.bookmarks.delete(repo="app", bookmark="feature-x")
print(result.success)
```

## Options

<ParamField path="repo" type="str" required>
  Repository name.
</ParamField>

<ParamField path="bookmark" type="str" required>
  Bookmark name to delete.
</ParamField>

<ParamField path="org" type="str | None">
  Organization override.
</ParamField>

## Response

<ResponseField name="success" type="bool">
  Whether the operation succeeded.
</ResponseField>
