liquifusion / icrm-sdk

ColdFusion wrapper for the Infusionsoft CRM API
Other
6 stars 6 forks source link

In case you get a case sensitivity error. #1

Closed dakuwan closed 12 years ago

dakuwan commented 12 years ago

This is a great tool but wanted to make a note of something i ran into.

This is most likely something that is straightforward and pretty obvious but I got caught on it.

When making your structures do not use < cfset structName.FirstName = '' /> when populating it. In this case for the contact add method. Create your structures with < cfset structName["FirstName"] = '' />. Otherwise you'll run into a "No Field Found" error because of case sensitivity.

Just wanted to make a note and thanks to liquifusion for putting this up for everyone to use.