public async Task SavePersonalData([FromBody] UpdateProfileInfoRequest model) { model.ClientId = _userManager.GetCurrentUserId(); await _personalDataService.UpdateProfileAsync(model); }