Authentication
To start, call the POST /auth/login
endpoint to exchange your user credentials (email + password) for a simple JWT
token. If you don't have an account yet, reach out to your account admin or contact us for further help.
If login is successful, the response will be a JWT token to use as your Bearer
header.
info
The JWT expiration time depends on your User Role as well as other factors. You may base64-decode your JWT token to view more technical details about it.
Testing it
To test that your auth headers are set correctly, call the GET /auth/me
endpoint. It will return a JSON payload with
your User information.