Swirls

SWIRLS_

  • How it works
  • Pricing

643 matches

OverviewAI & ML7Analytics8Communication18CRM4Developer Tools6E-commerce40Finance52Infrastructure28Marketing20Other409Productivity10Security17Social20Storage2Support2

643 matches

OverviewAI & ML7Analytics8Communication18CRM4Developer Tools6E-commerce40Finance52Infrastructure28Marketing20Other409Productivity10Security17Social20Storage2Support2
Actions

19 actions

Smartlead

19 actions

  • Add Email Accounts to CampaignPOSTv1.0.0
  • Add Leads to CampaignPOSTv1.0.0
  • Create CampaignPOSTv1.0.0
  • Create Lead ListPOSTv1.0.0
  • Get All CampaignsGETv1.0.0
  • Get All Email AccountsGETv1.0.0
  • Get Campaign AnalyticsGETv1.0.0
  • Get Campaign by IDGETv1.0.0
  • Get Campaign LeadsGETv1.0.0
  • Get Campaign StatisticsGETv1.0.0
  • Get Inbox RepliesPOSTv1.0.0
  • Get Lead by EmailGETv1.0.0
  • Get Overall StatisticsGETv1.0.0
  • Import Leads to ListPOSTv1.0.0
  • Pause LeadPOSTv1.0.0
  • Reply to Email ThreadPOSTv1.0.0
  • Resume LeadPOSTv1.0.0
  • Update Campaign StatusPOSTv1.0.0
  • Update LeadPOSTv1.0.0

Marketing/Smartlead

Create Lead List

v1.0.0

Creates a new lead list/group to organize your leads.

Input

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
{
  "type": "object",
  "required": [
    "listName"
  ],
  "properties": {
    "listName": {
      "type": "string",
      "description": "Name of the lead list"
    }
  }
}

Output

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
{
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "listName": {
      "type": "string"
    },
    "ok": {
      "type": "boolean"
    }
  }
}