Skip to main content
POST
/
api
/
user
/
login
Login and create a new session
curl --request POST \
  --url https://localhost:8080/api/user/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "<string>",
  "password": "<string>"
}
'
{
  "token": "<string>"
}

Body

application/json
username
string
required
password
string
required

Response

200 - */*

OK

token
string