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

> Update a Driving tag definition

Update a Driving property tag definition.

<ParamField path="id" type="string" required>
  Driving tag ID
</ParamField>

<ParamField body="label" type="string">
  Tag label
</ParamField>

<ParamField body="color" type="string">
  Tag color value
</ParamField>

<ParamField body="sort_order" type="number">
  Sort order for the tag list
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.v2.dealmachine.com/v1/driving/tags/11 \
    -X PATCH \
    -H "Authorization: Bearer dm_sk_live_xxx" \
    -H "Content-Type: application/json" \
    -d '{ "label": "Vacant property" }'
  ```
</RequestExample>
