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

# Update General Note

> Update a general Driving note

Update a general Driving note.

<ParamField path="id" type="string" required>
  General note ID
</ParamField>

<ParamField body="title" type="string">
  Updated note title
</ParamField>

<ParamField body="content" type="string">
  Updated note content
</ParamField>

<ParamField body="is_pinned" type="boolean">
  Whether the note should be pinned
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.v2.dealmachine.com/v1/driving/general-notes/30 \
    -X PATCH \
    -H "Authorization: Bearer dm_sk_live_xxx" \
    -H "Content-Type: application/json" \
    -d '{ "content": "Updated", "is_pinned": true }'
  ```
</RequestExample>
