Skip to main content
POST
/
auth
/
login
Login
curl --request POST \
  --url http://localhost:8080/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "<string>",
  "password": "<string>"
}
'
{
  "error": {
    "code": 400,
    "message": "<string>"
  }
}

Body

application/json

Login details.

Request body for logging in.

username
string
required
Required string length: 3 - 48
password
string<password>
required
Required string length: 5 - 128

Response

Success