cURL
curl --request GET \ --url https://api.production.hyperoru.com/api/users \ --header 'Authorization: Bearer <token>'
[ { "id": 123, "is_active": true, "username": "<string>", "email": "<string>" } ]
Session token issued by POST /api/users/login, transported as Authorization: Bearer <token>.
POST /api/users/login
Authorization: Bearer <token>
List all active users
Was this page helpful?