POST
/auth/login
curl \
--request POST 'http://localhost:8080/auth/login' \
--header "Content-Type: application/json" \
--data '{"email":"string","password":"string"}'
Request examples
{
"email": "string",
"password": "string"
}
Response examples (200)
{
"token": "string",
"expiresIn": 42
}