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

# Update Tag

> Update a tag

## Path Parameters

<ParamField path="id" type="string" required>
  ID of the tag to update
</ParamField>

## Request Body

<ParamField body="label" type="string">
  Display label for the tag
</ParamField>

## Response

Returns the updated tag object.

<RequestExample>
  ```bash cURL theme={null}
  curl -X PATCH 'https://api.example.com/tags/tag_high' \
    -H 'Authorization: Bearer YOUR_TOKEN' \
    -H 'Content-Type: application/json' \
    -d '{
      "label": "Critical Priority"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "tag_high",
    "scopeId": "scope_acme",
    "tagGroupId": "tag_group_priority",
    "identifier": "high",
    "label": "Critical Priority",
    "createdBy": "user-1",
    "createdAt": "2024-01-15T10:30:00Z"
  }
  ```
</ResponseExample>
