ActiveCampaign
Connect to ActiveCampaign to manage contacts, lists, campaigns, automations, and deals.
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| API Key | api_key | available | — |
Call a tool
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "ACTIVE_CAMPAIGN_CREATE_CAMPAIGN", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("ACTIVE_CAMPAIGN_CREATE_CAMPAIGN", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute ACTIVE_CAMPAIGN_CREATE_CAMPAIGN --data '{ }'Tool catalog
Available tools
13 callable operations
Create campaignACTIVE_CAMPAIGN_CREATE_CAMPAIGNCreates an ActiveCampaign campaign.Connection
Creates an ActiveCampaign campaign.
Authentication
Connected account requiredTags
Create dealACTIVE_CAMPAIGN_CREATE_DEALCreates an ActiveCampaign CRM deal.Connection
Creates an ActiveCampaign CRM deal.
Authentication
Connected account requiredTags
Create mailing listACTIVE_CAMPAIGN_CREATE_LISTCreates an ActiveCampaign mailing list.Connection
Creates an ActiveCampaign mailing list.
Authentication
Connected account requiredTags
Get contactACTIVE_CAMPAIGN_GET_CONTACTRetrieves a contact by ID.Connection
Retrieves a contact by ID.
Authentication
Connected account requiredTags
Get current ActiveCampaign userACTIVE_CAMPAIGN_GET_CURRENT_USERRetrieves the current user associated with the API key.Connection
Retrieves the current user associated with the API key.
Authentication
Connected account requiredTags
List automationsACTIVE_CAMPAIGN_LIST_AUTOMATIONSRetrieves ActiveCampaign automations.Connection
Retrieves ActiveCampaign automations.
Authentication
Connected account requiredTags
List campaignsACTIVE_CAMPAIGN_LIST_CAMPAIGNSRetrieves ActiveCampaign campaigns.Connection
Retrieves ActiveCampaign campaigns.
Authentication
Connected account requiredTags
List, search, and filter contactsACTIVE_CAMPAIGN_LIST_CONTACTSLists contacts and supports common search, pagination, and filtering parameters.Connection
Lists contacts and supports common search, pagination, and filtering parameters.
Authentication
Connected account requiredTags
List dealsACTIVE_CAMPAIGN_LIST_DEALSRetrieves ActiveCampaign CRM deals.Connection
Retrieves ActiveCampaign CRM deals.
Authentication
Connected account requiredTags
List mailing listsACTIVE_CAMPAIGN_LIST_LISTSRetrieves ActiveCampaign mailing lists.Connection
Retrieves ActiveCampaign mailing lists.
Authentication
Connected account requiredTags
Subscribe or unsubscribe contact to listACTIVE_CAMPAIGN_SUBSCRIBE_CONTACT_TO_LISTCreates a contact-list relationship. Use status 1 to subscribe and status 2 to unsubscribe.Connection
Creates a contact-list relationship. Use status 1 to subscribe and status 2 to unsubscribe.
Authentication
Connected account requiredTags
Sync contact dataACTIVE_CAMPAIGN_SYNC_CONTACTCreates or updates a contact by email address.Connection
Creates or updates a contact by email address.
Authentication
Connected account requiredTags
Update contactACTIVE_CAMPAIGN_UPDATE_CONTACTUpdates an existing contact by ID.Connection
Updates an existing contact by ID.
Authentication
Connected account requiredTags