Skala
Login check

User Login

Authenticates the user with username and password and returns a JWT token.

POST
/api/login_check

Authenticates the user with username and password and returns a JWT token.

AuthorizationBearer <token>

In: header

Request Body

application/json

The login data

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.skalasuite.com/api/login_check" \  -H "Content-Type: application/json" \  -d '{    "email": "string",    "password": "string"  }'
{
  "token": "string"
}