Login

Login

POST https://professional.signius.eu:8200/api/auth/login

This request providers you with the user's token, which is needed to futher requests.

Headers

Request Body

Example response:
{
    "massage": "<message>"
}

Session

GET https://professional.signius.eu:8200/api/auth/session

Checks if user is logged in.

Headers

Example response:
{
    "exception": "UnauthorizedAccessException",
    "code": 401,
    "message": "error.no.access",
    "timestamp": "2023-08-28T08:38:20.622Z",
    "status": "UNAUTHORIZED",
    "details": {
        "objectName": "authorization",
        "error": {
            "objectName": "authorization",
            "codes": [
                "error.no.access"
            ],
            "arguments": null,
            "defaultMessage": "error.no.access",
            "code": "error.no.access"
        }
    }
}

Last updated