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

# Update resume

> Configure the keep-watching prompt returning viewers see.

When a viewer comes back to a video they left mid-way, the resume prompt offers
to continue from where they stopped. This group turns it on and rewrites its
copy and colors.

This is a [merge-patch](/guides/merge-patch): send only the keys you want to
change and everything else keeps its stored value.

## Rewrite the prompt

<CodeGroup>
  ```bash cURL theme={null}
  curl -X PATCH https://api.vturb.com/v1/videos/{id} \
    -H "Authorization: Bearer vt_..." \
    -H "Content-Type: application/json" \
    -d '{ "resume": { "enabled": true, "texts": { "title": "Welcome back!", "play": "Keep watching", "replay": "Start over" } } }'
  ```

  ```json Body theme={null}
  {
    "resume": {
      "enabled": true,
      "texts": {
        "title": "Welcome back!",
        "play": "Keep watching",
        "replay": "Start over"
      }
    }
  }
  ```
</CodeGroup>

## The keys

| Key                       | Type    | Writes                                   |
| ------------------------- | ------- | ---------------------------------------- |
| `enabled`                 | boolean | Turns the prompt on or off               |
| `disable_pause`           | boolean | Keep the video rolling behind the prompt |
| `styles.background_color` | string  | Prompt background color                  |
| `styles.foreground_color` | string  | Prompt text/button color                 |
| `texts.title`             | string  | Headline of the prompt                   |
| `texts.play`              | string  | Label on the continue button             |
| `texts.replay`            | string  | Label on the start-over button           |
