I’m writing a c# application, and I’m attempting to use the EventDay .net library for infusionsoft https://github.com/EventDay/Infusionsoft.net
I’m not tied to it if I can figure out a different way. My problem is that the library works fine for retrieving the native fields such as Email, Id, etc. But does not pull in any custom fields. Here’s a sample of what I’m dealing with.
Contact contact = client.ContactService.Load(infusionsoftid, new string[] { “Email”,“Id”,"_CustomerNumber"},);
That code will pull in the email and ID fine, but pulls back nothing for our custom field “_CustomerNumber”.
Any help would be much appreciated.