curl --request GET \
--url https://api.example.com/cabinet/admin/rbac/users \
--header 'Authorization: Bearer <token>'[
{
"user_id": 123,
"telegram_id": 123,
"username": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"role_names": [
"<string>"
]
}
]List all users that have at least one active RBAC role.
curl --request GET \
--url https://api.example.com/cabinet/admin/rbac/users \
--header 'Authorization: Bearer <token>'[
{
"user_id": 123,
"telegram_id": 123,
"username": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"role_names": [
"<string>"
]
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.