> ## 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.

Delete a bookmark by name.

**Required scope: `write`**

```ts theme={null}
await mesa.bookmarks.delete({ repo: 'app', bookmark: 'feature/auth' });
```

## Options

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

<ParamField path="bookmark" type="string" required>
  Bookmark name.
</ParamField>

<ParamField path="org" type="string | undefined">
  Organization override.
</ParamField>

## Response

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