> ## 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 Property Note

> Update a Driving property note

Update the content for a Driving property note.

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

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

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