Skip to content

Brand Metric Groups

New in v0.10

The brand-metric-groups endpoint has full support, including query validation.

Endpoint Function Client method Filters class
"brand-metric-groups" brand_metric_groups Client.brand_metric_groups BrandMetricsFilters

For more information on available filters and functionality, see the Fount documentation for the brand-metric-groups endpoint.

Usage

Using top-level functions
import bavapi

result = bavapi.brand_metric_groups("TOKEN", name="Pillars")
Using Client asynchronously
import bavapi

async with bavapi.Client("TOKEN") as bav:
    result = await bav.brand_metric_groups(name="Pillars")

Available filters in function calls

These filters are available directly within the function/method:

  • Positional filters: name, active
  • Keyword filters: group_id

For other filters, passing a BrandMetricGroupsFilters instance to the filters parameter is required.