Skip to main content
GET
/
cabinet
/
admin
/
rbac
/
users
List Rbac Users
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>"
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

user_id
integer
required
telegram_id
integer | null
username
string | null
first_name
string | null
last_name
string | null
email
string | null
role_names
string[]