user/login
This endpoint must be called to obtain the JWT token that will allow use the full API.This request endpoint is the only one that will not use the Bearer JWT token in the Authorization header since it users a Basic authentication scheme. The value must be a Base64-encoded string with the following format: username:password. The header should look like this
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=Note: Replace dXNlcm5hbWU6cGFzc3dvcmQ= with the provided credentials.
Request example
GET - {{host}}/user/login
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=
x-api-key: {{api-key}}Response example
eyJhbGciOiJIUzI1NiIsInR5cCI6...Updated 4 months ago
