You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hmm, I don't have access to an InfusionSoft instance, but I believe the proper pattern is infusionsoft.ContactService.load(contactId, ['list', 'of', 'fields']), so something like:
I have tried formatting this in a number of ways.
infusionsoft.ContactService.load({'contactId': 1, 'selectedFields': ('FirstName', 'LastName')})
infusionsoft.ContactService.load({'contactId': 11, 'selectedFields': 'FirstName', 'LastName'})
infusionsoft.ContactService.load({'contactId': 11, 'selectedFields': ['FirstName', 'LastName']})
etc
and none of them work. Could I possibly get an example of how the load request should be formatted?
The error that it raises says "<Fault 0: 'No method matching arguments: java.lang.String, java.util.HashMap'>"
The text was updated successfully, but these errors were encountered: