curl --request GET \
--url https://api.example.com/cabinet/admin/tickets/stats \
--header 'Authorization: Bearer <token>'{
"total": 123,
"open": 123,
"pending": 123,
"answered": 123,
"closed": 123
}Get ticket statistics.
curl --request GET \
--url https://api.example.com/cabinet/admin/tickets/stats \
--header 'Authorization: Bearer <token>'{
"total": 123,
"open": 123,
"pending": 123,
"answered": 123,
"closed": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.