> ## 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.create()

> Create a bookmark at an existing change.

Create a bookmark that points to an existing change ID.

**Required scope: `write`**

```python theme={null}
bookmark = await mesa.bookmarks.create(
    repo="app",
    name="feature-x",
    change_id="zyxwvutsrqponmlkzyxwvutsrqponmlk",
)
```

## Options

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

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

<ParamField path="change_id" type="str" required>
  Existing change ID the bookmark should point to.
</ParamField>

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

## Response

<ResponseField name="name" type="str">
  Bookmark name.
</ResponseField>

<ResponseField name="change_id" type="str">
  Change ID the bookmark points to.
</ResponseField>

<ResponseField name="is_default" type="bool">
  Whether this is the repository default bookmark.
</ResponseField>
