Added
New: Categorize and Organize Events with Tags
about 7 hours ago by Guillaume Pinsard
We're excited to announce the launch of tags for the events endpoints 🎉, to better categorize, organize, and filter your events at scale. Tags make it easier to group events by theme, audience, campaign, or internal ownership, and to retrieve only the events that matter to your workflows or integrations.
This feature is particularly useful for:
- Organizing large event catalogs into logical groups (e.g. product lines, regions, campaigns);
- Filtering events programmatically for reporting or automation;
- Enriching event data consumed by downstream systems (CRM, data warehouse, internal tools).
What’s new
Each Livestorm event can be associated with one or several tags.
New endpoints
POST /v1/events/{id}/tags: Assign a tag (that does not already exist) to an event.DELETE /v1/events/{id}/tags: Remove a tag from an event.
Updated endpoints
The following endpoints now support retrieving tags associated with events:
GET /v1/events?include=tags: List events with their tags included.GET /v1/events/{id}?include=tags: Retrieve a single event with all its tags.
New filtering capability
The following endpoints now support filtering using tag(s):
GET /v1/events?filter[tag]=<tag>: Retrieve only events associated with at least one of the tag(s).
Happy tagging!
The Livestorm developer relationship team