Open Connector
All tools

ActiveCampaign

Connect to ActiveCampaign to manage contacts, lists, campaigns, automations, and deals.

active-campaignv1.0.013 tools

Authentication

MethodKindStatusDetails
API Keyapi_keyavailable

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.

Creates an ActiveCampaign campaign.

Authentication

Connected account required

Tags

campaignswrite
Create dealACTIVE_CAMPAIGN_CREATE_DEALCreates an ActiveCampaign CRM deal.

Creates an ActiveCampaign CRM deal.

Authentication

Connected account required

Tags

dealswrite
Create mailing listACTIVE_CAMPAIGN_CREATE_LISTCreates an ActiveCampaign mailing list.

Creates an ActiveCampaign mailing list.

Authentication

Connected account required

Tags

listswrite
Get contactACTIVE_CAMPAIGN_GET_CONTACTRetrieves a contact by ID.

Retrieves a contact by ID.

Authentication

Connected account required

Tags

contactsread
Get current ActiveCampaign userACTIVE_CAMPAIGN_GET_CURRENT_USERRetrieves the current user associated with the API key.

Retrieves the current user associated with the API key.

Authentication

Connected account required

Tags

usersread
List automationsACTIVE_CAMPAIGN_LIST_AUTOMATIONSRetrieves ActiveCampaign automations.

Retrieves ActiveCampaign automations.

Authentication

Connected account required

Tags

automationsread
List campaignsACTIVE_CAMPAIGN_LIST_CAMPAIGNSRetrieves ActiveCampaign campaigns.

Retrieves ActiveCampaign campaigns.

Authentication

Connected account required

Tags

campaignsread
List, search, and filter contactsACTIVE_CAMPAIGN_LIST_CONTACTSLists contacts and supports common search, pagination, and filtering parameters.

Lists contacts and supports common search, pagination, and filtering parameters.

Authentication

Connected account required

Tags

contactsread
List dealsACTIVE_CAMPAIGN_LIST_DEALSRetrieves ActiveCampaign CRM deals.

Retrieves ActiveCampaign CRM deals.

Authentication

Connected account required

Tags

dealsread
List mailing listsACTIVE_CAMPAIGN_LIST_LISTSRetrieves ActiveCampaign mailing lists.

Retrieves ActiveCampaign mailing lists.

Authentication

Connected account required

Tags

listsread
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.

Creates a contact-list relationship. Use status 1 to subscribe and status 2 to unsubscribe.

Authentication

Connected account required

Tags

listscontactswrite
Sync contact dataACTIVE_CAMPAIGN_SYNC_CONTACTCreates or updates a contact by email address.

Creates or updates a contact by email address.

Authentication

Connected account required

Tags

contactswrite
Update contactACTIVE_CAMPAIGN_UPDATE_CONTACTUpdates an existing contact by ID.

Updates an existing contact by ID.

Authentication

Connected account required

Tags

contactswrite

Provider resources