User
Login
This endpoint can be used for login. The response contains an access token and a refresh token which need to be used in the Authorization header in the future API calls.
POST
/
users
/
login
Body
application/json
email
string
requiredThe email of the user is required to login.
password
string
requiredThe password of the user is a compulsory requirement for login.
Response
200 - application/json
access_token
string
requiredOn successful login an access token is returned, which needs to be saved and used as auth token in the future api calls.
refresh_token
string
requiredThis endpoint also returns a refresh token for the user.