public async Task <IActionResult> Identification([FromBody] Identity inputData)
        {
            var identity = await _identificationService.CheckIdentity(inputData.Email, inputData.Password);

            if (identity == null)
            {
                return(_loggedRequestsService.BadLoggedRequest("Invalid username or password."));
            }
            var responce = new
            {
                token  = _createTokenService.CreateToken(identity.Claims),
                id     = identity.Claims.First(a => a.Type == "Id").Value,
                access = identity.Claims.First(a => a.Type == "Access").Value
            };

            return(Ok(responce.ToJson()));
        }