curl --request GET \
--url https://api.example.com/cabinet/admin/tariffs/{tariff_id}/stats \
--header 'Authorization: Bearer <token>'{
"id": 123,
"name": "<string>",
"subscriptions_count": 123,
"active_subscriptions": 123,
"trial_subscriptions": 123,
"revenue_kopeks": 123,
"revenue_rubles": 123
}Get tariff statistics.
curl --request GET \
--url https://api.example.com/cabinet/admin/tariffs/{tariff_id}/stats \
--header 'Authorization: Bearer <token>'{
"id": 123,
"name": "<string>",
"subscriptions_count": 123,
"active_subscriptions": 123,
"trial_subscriptions": 123,
"revenue_kopeks": 123,
"revenue_rubles": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.