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

> Save a property as a Driving target

Save a DealMachine property as a Driving target.

<ParamField body="property_id" type="number" required>
  Internal DealMachine property ID
</ParamField>

<ParamField body="latitude" type="number">
  Latitude where the target was saved
</ParamField>

<ParamField body="longitude" type="number">
  Longitude where the target was saved
</ParamField>

<ParamField body="drive_session_id" type="number">
  Driving session ID
</ParamField>

<ParamField body="notes" type="string">
  Optional target notes
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.v2.dealmachine.com/v1/driving/targets \
    -H "Authorization: Bearer dm_sk_live_xxx" \
    -H "Content-Type: application/json" \
    -d '{
      "property_id": 123456,
      "notes": "Vacant lot with overgrown yard"
    }'
  ```
</RequestExample>
