API Reference
cURL
curl --request GET \ --url https://api.example.com/api/admin/users \ --header 'Authorization: Bearer <token>'
{ "users": [ { "id": 123, "username": "<string>", "is_admin": true, "created_at": "<string>", "updated_at": "<string>" } ], "total": 123, "page": 123, "size": 123, "pages": 123 }
Get paginated list of users (admin only)
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page number
x >= 1
Page size
1 <= x <= 100
Search username
Successful Response
Show child attributes