Hello,
We have modified the Active Directory schema to include some custom fields. I am trying to read/write to those custom fields through the Adaxes API and am getting an exception: One or more input parameters are invalid. I am using the following:
IADsUser user = this.GetUserByLogin(name); //get the IADsUser
user.Put("customFieldName", "value");
user.SetInfo();
Any help would be appreciated.