Brand Metric Groups
info
Read more in the API documentation for the brand-metric-groups
endpoint.
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 | BrandMetricGroupsFilters |
Usage
- Sync
- Async
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 an BrandMetricGroupsFilters
instance to the filters
parameter is required.