Module: Infusionsoft::Client::Funnel

Included in:
Infusionsoft::Client
Defined in:
lib/infusionsoft/client/funnel.rb

Overview

Funnel Service is used to add contacts to your sequences

Instance Method Summary collapse

Instance Method Details

#funnel_achieve_goal(integration, call_name, cid) ⇒ Object

Achieves a goal, Returns the result of a goal being achieved.

Parameters:

  • integration,

    string, The integration name of the goal. This defaults to the name of the app.

  • call_name,

    string, The call name of the goal

  • cid,

    int, The id of the contact you want to add to a sequence.



12
13
14
# File 'lib/infusionsoft/client/funnel.rb', line 12

def funnel_achieve_goal(integration, call_name, cid)
  response = xmlrpc('FunnelService.achieveGoal', integration, call_name, cid)
end