User Login
POST/auth/login
Performs a user login request. If successful an HTTP code 200 OK will be returned together with a new authorization token. Look at the Authorization header in the response, it will contain something like bearer eyJ0eXAiOiJKV1....
Important: This token must be cached by you and supplied with each subsequent requests to the API through the
AuthorizationHTTP header.
Important: The token is refreshed every few minutes by the API server. When any request is made by you and you receive the
Authorizationheader, update your cache with the new token and then send the new token with each subsequent request. The old token does not immediately expire and is valid for 7 days.
Request
Responses
- 200
- 401
- 425
OK
Unauthorized
User Not Found