Authenticates a user using Basic Auth credentials and returns a JWT token if successful.
Security
BasicAuth
POST
curl -i -X POST \
-u '<username>:<password>' \
https://api.open-atlas.com/_mock/openapi/login \
-H 'Authorization: Basic bXJmb3VseTptcnBhc3N3b3Jk' \
-H 'Content-Type: application/json'Response
{ "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.your-payload-here.signature" }