Login and return the auth token

Login with provided user/pass and return auth token. Note this is rerouted and handled by spring

Request
Request Body schema: application/x-www-form-urlencoded
username
string
password
string
Responses
200

OK

401

Unauthorized

post/user-service/v1/login
Request samples
curl -i -X POST \
  http://localhost:8081/user-service/v1/login \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d username=string \
  -d password=string
Response samples
application/json
"string"