Refresh Token

PUT /authentications

Get new access token using refreshToken.

Headers
Content-Type: application/json
Body
{
  "refreshToken": "jwt.token.example"
}

Response

200 OK
Response Body
{
  "status": "success",
  "data": {
    "accessToken": "jwt.token.example",
  }
}