nateleavitt / infusionsoft

Ruby Gem for the Infusionsoft API
MIT License
58 stars 70 forks source link

Infusionsoft::LoadingError: [Loading]Error loading follow-up sequence #42

Closed rhnorment closed 9 years ago

rhnorment commented 9 years ago

I can add a new contact, but cannot seem to add a contact to a campaign.

Example:

contact_id = Infusionsoft.contact_add_with_dup_check({ FirstName:'Hank', LastName:'Hill', Email:'hank@gmail.com' }, 'EmailAndName')

Infusionsoft.contact_add_to_campaign(contact_id, 35)  //This throws the error.

Thoughts?

nateleavitt commented 9 years ago

Hey... what does the error look like? Do you see in your logs?

nateleavitt commented 9 years ago

@rhnorment Let me know if you continue to see this issue.

mhassaan commented 8 years ago

Hi @nateleavitt i am integrating this gem in my rails app and i am facing the same issue with some of the methods. Like when i try to make an api call to add contac to campaign contact_id = Infusionsoft.contact_add_with_dup_check({ FirstName:'Bill', LastName:'Joe', Email:'bill@gmail.com' }, 'ContactName')

Infusionsoft.contact_add_to_campaign(contact_id,2)

This throws an error <Infusionsoft::LoadingError: [Loading]Error loading follow-up sequence>

Any update on this ?