SmartDeno
SmartDeno - Rest API
Get all users - HTTP GET: api/v1/user
Get (existing) single user - HTTP GET: /api/v1/user/guest
Get (non existing) single user - HTTP GET: /api/v1/user/pippo
You can also try (using a REST client, like Postman)
Create new user - HTTP POST /api/v1/user
With JSON body
{
"username": "my_new_user",
"password": "my_new_password"
}
Delete existing user - HTTP DELETE /api/v1/user/:username
Where
:username = existing username