Hello,
I using the REST API to get my campaigns and then create/assign a contact to a specific sequence.
My issue is that I can get my campaigns but I get no sequence from them. My test campaign has an “email confirm sequence” and I’m using this endpoint to retrieve all the campaigns https://api.infusionsoft.com/crm/rest/v1/campaigns
This is the response body I’m getting
{
"campaigns": [
{
"error_message": null,
"date_created": "2018-03-14T09:43:05.000+0000",
"name": "Test Campaign",
"active_contact_count": 0,
"completed_contact_count": 0,
"published_status": true,
"id": 2,
"published_time_zone": "Europe/London",
"time_zone": "Europe/London",
"published_date": "2018-03-26T22:41:26.000+0000"
}
],
"count": 1,
"next": "https://api.infusionsoft.com/crm/rest/v1/campaigns/?limit=1000&offset=1&order=id&order_direction=descending&=",
"previous": "https://api.infusionsoft.com/crm/rest/v1/campaigns/?limit=1000&offset=0&order=id&order_direction=descending&="
}
What am I missing here?
Thanks very much for the help!