Skip to content

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:

POST /api/v1/auth/login HTTP/1.1
Authorization: Basic {Base64(username:password)}