Send a click event to capture when users select filters.
Required ACL:searchUse this event to track when users click facet filters in your user interface.For details where this event is used, see Event types.
var insights = new InsightsClient( "YourApplicationID", "YourSearchOnlyAPIKey").User("user-123456");insights.ClickedFilters( "Brand Clicked", "YourIndexName", new List<string> { "brand:apple" });
Name of the specific event.Format: 1-64 ASCII characters, except control characters.To maximize the impact of your events,
use consistent event names and consistent formatting—for example, “Product Added To Cart” (always in title case).For example, you can adopt Twilio Segment’s object-action framework.
List of facet filters.You can include up to 10 filters.Format:${attribute}:${value}—for example, brand:apple.
Both the attribute and value in each facet filter must be URL-encoded individually and separated by a :, such as, "discount:10%25".