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

> Move a bookmark to a different change.

Repoint an existing bookmark to a different change ID.

**Required scope: `write`**

```python theme={null}
bookmark = await mesa.bookmarks.move(
    repo="app",
    bookmark="main",
    change_id="zyxwvutsrqponmlkzyxwvutsrqponmlk",
)
print(bookmark.from_change_id, bookmark.change_id)
```

## Options

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

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

<ParamField path="change_id" type="str" required>
  Change ID to move the bookmark 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>

<ResponseField name="from_change_id" type="str | None">
  Previous change ID before the move, or null when unavailable.
</ResponseField>
