Get Users
Get All Users
Get a list of all users. Any access level can do this, but admin will get access to more information, for example emails and permission levels are only visible to admins, password and keys are hidden to everyone.
GET http://127.0.0.1/users
Header authorization
access_token
Get One User
Get a specific user. Just like the previous request. Admins will see more information.
GET http://127.0.0.1/users/:userId
:userId must be replaced by a username or a user id, for example
GET http://127.0.0.1/users/Marc
Header authorization
access_token
Get Online
Get the list of active users, users are active if they logged in in the past 10 minutes. This request requires no access token, but provides no information other than the usernames.
GET http://127.0.0.1/online
Last updated