curl --request GET \
--url https://api.example.com/cabinet/admin/broadcasts/filters \
--header 'Authorization: Bearer <token>'{
"filters": [
{
"key": "<string>",
"label": "<string>",
"count": 123,
"group": "<string>"
}
],
"tariff_filters": [
{
"key": "<string>",
"label": "<string>",
"tariff_id": 123,
"count": 123
}
],
"custom_filters": [
{
"key": "<string>",
"label": "<string>",
"count": 123,
"group": "<string>"
}
]
}Get all available filters with user counts.
curl --request GET \
--url https://api.example.com/cabinet/admin/broadcasts/filters \
--header 'Authorization: Bearer <token>'{
"filters": [
{
"key": "<string>",
"label": "<string>",
"count": 123,
"group": "<string>"
}
],
"tariff_filters": [
{
"key": "<string>",
"label": "<string>",
"tariff_id": 123,
"count": 123
}
],
"custom_filters": [
{
"key": "<string>",
"label": "<string>",
"count": 123,
"group": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.