PATCH
/
api
/
v1
/
tags
Update Tags (Bulk)
curl --request PATCH \
  --url https://app.journeybee.io/api/v1/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tags": [
    {
      "id": 123,
      "label": "<string>",
      "background_color": "<string>",
      "text_color": "<string>"
    }
  ]
}'
{
  "updated": [
    {}
  ]
}

Authentication

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"}]'

Request Body Schema

tags
array
required
Array of tag updates

Response Schema

updated
array
Array of updated tag IDs

Notes

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