cURL
curl --request GET \ --url https://app.journeybee.io/api/v1/tags \ --header 'Authorization: Bearer <token>'
[ { "id": 10, "uuid": "tag-uuid-123", "label": "High Priority", "background_color": "#EF4444", "text_color": "#FFFFFF", "association": "lead", "partner_type": "referral", "company_id": 123 }, { "id": 11, "label": "Enterprise", "background_color": "#8B5CF6", "text_color": "#FFFFFF", "association": "lead_deal" } ]
Retrieve all tags for a company with filtering by association type
curl -X GET "https://app.journeybee.io/api/v1/tags?association=lead" \ -H "Authorization: Bearer your-api-key-uuid" \ -H "Content-Type: application/json"
lead
lead_deal
partner
card
referral
reseller
Show Tag Object
read_access