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

# Update Summary

> Update an existing professional summary

## Overview

Update an existing professional summary. Only provided fields are modified.

<Note>
  **Scope required:** `summaries:write` | **Rate limit:** 20 requests/min
</Note>

## Request

```bash theme={null}
PATCH /v1/summaries/clx...
Content-Type: application/json
```

### Path Parameters

<ParamField path="id" type="string" required>
  The summary's unique ID
</ParamField>

### Body Parameters

<ParamField body="title" type="string">
  Internal label for the summary (e.g. "Backend role"). (max 100 characters) (nullable)
</ParamField>

<ParamField body="content" type="string">
  The actual summary text shown on the CV.
</ParamField>

### Query Parameters

<ParamField query="cvId" type="string">
  Target a specific resume by its id (from `list-resumes`). Omit to use your base/default resume; the resume must be self-contained.
</ParamField>

## Response

```json theme={null}
{
  "success": true,
  "id": "clx..."
}
```
