Get token
POST
/api/login/token
Login via JWT. To interact with some API you'll need an access_token you'll get from this call.
Request Body
application/json
JSON "email": "admin@gancio.org", "password": "my_super_secret_password"
{
}
Responses
A JSON response with an access_token property you have to use in Authorization: Bearer <access_token> header for authenticated request.

