hotel-service/http/auth.http
Martin Berg Alstad 5d5e6393ac First working API.
Simple auth by creating sessions and storing in db
2024-08-29 16:43:04 +02:00

18 lines
290 B
HTTP

### Register a new user
POST {{baseurl}}/auth/register
Content-Type: application/json
{
"email": "test@test.com",
"password": "password",
"role": "ADMIN"
}
### Login
POST {{baseurl}}/auth/login
Content-Type: application/json
{
"email": "test@test.com",
"password": "password"
}