API: Authentication
To access the API, log in using your username and password. Include your credentials in the Authorization header using Basic authentication (base64-encode username:password). The login request returns a JWT token that must be sent with all subsequent API calls as a Bearer token.
Login
Send your credentials to receive a JWT token.
Request:
Response:
curl:
Info
Store the returned token value and pass it as Authorization: Bearer {token} in all subsequent requests.