> ## 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.

# Create General Note

> Create a general Driving note

Create a general Driving note.

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

<ParamField body="content" type="string" required>
  Note content
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.v2.dealmachine.com/v1/driving/general-notes \
    -H "Authorization: Bearer dm_sk_live_xxx" \
    -H "Content-Type: application/json" \
    -d '{
      "title": "Route idea",
      "content": "Drive the north side next week"
    }'
  ```
</RequestExample>
