Back in the day, time-based sequences were originally called autoresponders, hence the name of this resource. In the FeedBlitz UI the are called funnels; you may also know them as drip campaigns.
Resource URL: /autoresponders
FeedBlitz offers an autoresponder (funnel, drip campaign) capability. This resource returns all the autoresponders published by the user. If none are defined an empty <autoresponder /> tag is returned.
<?xml version="1.0" encoding="utf-8" ?>
<feedblitzapi version="1.0" xmlns:xlink="http://www.w3.org/1999/xlink">
<rsp stat="ok">
<success code="0" msg="Authorized" />
</rsp>
<autoresponders>
<count>1</count>
<autoresponder>
<id>123</id>
<publisherid>57</publisherid>
<name>Thank You</name>
<description>Send a free daily email course for 7 days</description>
<link>http://mysite.com/courseware/email_free.rss</link>
</autoresponder>
</autoresponders>
</feedblitzapi>
Tag | Comment |
<id> | The ID of the feed. Use with the /subscriptions resource to find more information on the feed. |
<publisherid> | The ID of the publisher |
<name> | The name of the autoresponder as defined by the user to FeedBlitz |
<description> | The feed’s description, as entered by the user to FeedBlitz. |
<link> | The source URL that is polled to feed the autoresponder. |
This resource only supports the GET method. To change an autoresponder you need to POST to the appropriate /syndication resource.
Managing a Funnel Sequence
A whole API exists outside of the /autoresponder resource to manage funnel entries, their conditional actions, and more.