Get login token

This unauthenticated endpoint is used to get the JWT (valid for one day) that must be used in the header of every other request.

Request
Request Body schema: application/json
refreshToken
string
Responses
200

The JWT and the expiration date and time.

post/login
Request samples
application/json
{
  • "refreshToken": "string"
}
Response samples
application/json
{
  • "idToken": "string",
  • "validUntilDate": "2019-08-24T14:15:22Z"
}