[HttpPost("checkusermanagercompliance")] // POST: api/account/checkusermanagercompliance
 public JToken CheckUserManagerCompliance(JToken jUserPropertyNameUserPropertyDisplayNameAndUserPropertValue) => (ModelState.IsValid ? _accountManager.CheckUserManagerCompliance(jUserPropertyNameUserPropertyDisplayNameAndUserPropertValue["UserPropertyName"]?.ToString(), jUserPropertyNameUserPropertyDisplayNameAndUserPropertValue["UserPropertyDisplayName"]?.ToString(), jUserPropertyNameUserPropertyDisplayNameAndUserPropertValue["UserPropertyValue"]?.ToString()) : _defaultInvalidResponse).ToJToken();