cURL
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": [ {} ] }
Update multiple tags in a single operation
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"}]'
Show Tag Update Object
write_access