You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
292 B

### POST A NEW USER
POST http://localhost:3000/api/users
Content-Type: application/json
{
"username": "astria",
"password": "toor"
}
### LOGIN USER
POST http://localhost:3000/api/users/login
Content-Type: application/json
{
"username": "John Doe",
"password": "securepassword123"
}