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

Create a bookmark pointing at an existing change.

**Required scope: `write`**

```ts theme={null}
const bookmark = await mesa.bookmarks.create({
  repo: 'app',
  name: 'feature/auth',
  change_id: 'zyxwvutsrqponmlkzyxwvutsrqponmlk',
});

console.log(bookmark.name);
```

## Options

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

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

<ParamField path="change_id" type="string" required>
  Change ID the bookmark should point to.
</ParamField>

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

## Response

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

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

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