auth

Authenticate towards the node

post/auth

Request body

passwordstring string required
usernamestring string required

Example request

{
  "password": "password",
  "username": "username"
}

Response

Login was successful

errorstring string required
jwtstring string required

Example response

{
  "jwt": "jwt",
  "error": "error"
}

Changes