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

# Update Tags (Bulk)

> Update multiple tags in a single operation

## Authentication

<CodeGroup>
  ```bash cURL theme={null}
  curl -X PATCH "https://app.journeybee.io/api/v1/tags" \
    -H "Authorization: Bearer your-api-key-uuid" \
    -H "Content-Type: application/json" \
    -d '[{"id": 10, "label": "Updated High Priority", "background_color": "#DC2626"}]'
  ```
</CodeGroup>

## Request Body Schema

<ParamField body="tags" type="array" required>
  Array of tag updates

  <Expandable title="Tag Update Object">
    <ParamField body="id" type="number" required>Tag ID to update</ParamField>
    <ParamField body="label" type="string">Updated tag label</ParamField>
    <ParamField body="background_color" type="string">Updated background color (hex)</ParamField>
    <ParamField body="text_color" type="string">Updated text color (hex)</ParamField>
  </Expandable>
</ParamField>

## Response Schema

<ResponseField name="updated" type="array">
  Array of updated tag IDs
</ResponseField>

## Notes

* Requires API key with `write_access` permission
* Colors must be valid hex color codes
* Bulk operation for efficiency
