CASE FrameworkCASE Framework

Login using a temporary token (optionally with password or access token)

POST
/v1/auth/login-with-temptoken

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/auth/login-with-temptoken" \  -H "Content-Type: application/json" \  -d '{    "tempToken": "string"  }'
{
  "token": {
    "accessToken": "string",
    "refreshToken": "string",
    "expiresIn": 0,
    "selectedProfile": "string",
    "lastOTP": {
      "property1": 0,
      "property2": 0
    }
  },
  "user": {}
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}