> ## 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 Custom Section Item

> Update an item within a custom CV section

## Overview

Update an existing item. Only provided fields are modified. Pass `null` to clear a field.

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

## Request

```bash theme={null}
PATCH /v1/custom-section-items/cli...
Content-Type: application/json
```

### Path Parameters

<ParamField path="id" type="string" required>
  Item id
</ParamField>

### Body Parameters

All fields are optional and nullable.

<ParamField body="title" type="string">
  Item title
</ParamField>

<ParamField body="subtitle" type="string">
  Item subtitle
</ParamField>

<ParamField body="organization" type="string">
  Organisation
</ParamField>

<ParamField body="location" type="string">
  Location
</ParamField>

<ParamField body="description" type="string">
  Description
</ParamField>

<ParamField body="startDate" type="string">
  Free-text date or YYYY-MM-DD
</ParamField>

<ParamField body="endDate" type="string">
  Free-text date or YYYY-MM-DD
</ParamField>

<ParamField body="url" type="string">
  URL
</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": "cli..."
}
```
