{"skill":{"slug":"activecampaign-marketing","displayName":"ActiveCampaign","summary":"Manage contacts, campaigns, automations, lists, and marketing workflows in ActiveCampaign via the ActiveCampaign API. Use this skill when users want to searc...","description":"---\nname: activecampaign-marketing\ndescription: Manage contacts, campaigns, automations, lists, and marketing workflows in ActiveCampaign via the ActiveCampaign API. Use this skill when users want to search contacts, manage lists, create campaigns, configure automations, handle deals, or work with account and deal pipelines.\n---\n\n# ActiveCampaign\n\n![ActiveCampaign](https://raw.githubusercontent.com/ClawLink-HQ/clawlink/main/public/images/brand-logos/activecampaign.svg)\n\nManage ActiveCampaign from chat — contacts, campaigns, automations, lists, deals, and marketing workflows via the ActiveCampaign API with OAuth authentication.\n\nThis skill uses [ClawLink](https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=activecampaign-marketing) for hosted connection flows and credentials so you do not need to configure ActiveCampaign API access yourself.\n\n### Setup in 3 Steps\n\n| Step 1: Install | Step 2: Pair Account | Step 3: Connect ActiveCampaign |\n|:---:|:---:|:---:|\n| ![Install](https://raw.githubusercontent.com/ClawLink-HQ/clawlink/main/public/images/pairing/initialstep_1.gif) | ![Pair](https://raw.githubusercontent.com/ClawLink-HQ/clawlink/main/public/images/approve_process.gif) | *App-specific connection GIF coming soon* |\n| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect ActiveCampaign |\n\n## How It Works\n\n```\n┌─────────────────┐     ┌──────────────┐     ┌──────────────────────┐\n│   OpenClaw      │────▶│   ClawLink   │────▶│ ActiveCampaign API │\n│   (User Chat)   │     │   (OAuth)    │     │   (Contacts/Campaigns)│\n└─────────────────┘     └──────────────┘     └──────────────────────┘\n │                       │                       │\n         │  1. Install Plugin    │                       │\n         │  2. Pair Device       │                       │\n         │  3. Connect AC         │                       │\n         │                       │  4. Secure Token      │\n         │                       │  5. Proxy Requests    │\n         │                       │                       │\n         ▼                       ▼                       ▼\n   ┌──────────┐           ┌──────────┐           ┌──────────┐\n   │  SKILL   │           │ Dashboard│           │ Active │\n   │  File    │           │ Auth     │           │ Campaign │\n   └──────────┘           └──────────┘           └──────────┘\n```\n\n## Install\n\nInstall the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.\n\n```bash\nopenclaw plugins install clawhub:clawlink-plugin\nopenclaw config set tools.alsoAllow '[\"clawlink-plugin\"]' --strict-json\nopenclaw gateway restart\n```\n\nThen tell the user: \"OpenClaw has been restarted. Send `/new` as a standalone message to start a fresh chat, then ask for ActiveCampaign again.\"\n\n## Quick Start\n\n```bash\n# List all contacts\nclawlink_call_tool --tool \"activecampaign_list_contacts\" --params '{\"limit\": 20}'\n\n# Search for a contact by email\nclawlink_call_tool --tool \"activecampaign_get_contact\" --params '{\"contact_id\": \"CONTACT_ID\"}'\n\n# Add a contact to a list\nclawlink_call_tool --tool \"activecampaign_add_contact_to_list\" --params '{\"list_id\": \"LIST_ID\", \"contact_id\": \"CONTACT_ID\"}'\n```\n\n## Authentication\n\nAll ActiveCampaign tool calls are authenticated automatically by ClawLink using the user's connected ActiveCampaign account.\n\n**No API key is required in chat.** ClawLink stores the OAuth token securely and injects it into every ActiveCampaign API request on the user's behalf.\n\n### Getting Connected\n\n1. Install the ClawLink plugin (see Install above).\n2. Pair the plugin with `clawlink_begin_pairing` if it is not configured yet.\n3. Open https://claw-link.dev/dashboard?add=activecampaign and connect ActiveCampaign.\n4. Call `clawlink_list_integrations` to verify the connection is active.\n\n## Connection Management\n\n### List Connections\n\n```bash\nclawlink_list_integrations\n```\n\n**Response:** Returns all connected integrations. Look for `activecampaign` in the list.\n\n### Verify Connection\n\n```bash\nclawlink_list_tools --integration activecampaign\n```\n\n**Response:** Returns the live tool catalog for ActiveCampaign.\n\n### Reconnect\n\nIf ActiveCampaign tools are missing or the connection shows an error:\n\n1. Direct the user to https://claw-link.dev/dashboard?add=activecampaign\n2. After they confirm, call `clawlink_list_integrations` to verify\n3. Then call `clawlink_list_tools --integration activecampaign`\n\n## Security& Permissions\n\n- Access is scoped to the connected ActiveCampaign account's data.\n- **All write operations require explicit user confirmation.** Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.\n- Destructive actions (delete contact, delete account, delete deal) are marked as high-impact and must be confirmed.\n\n## Tool Reference\n\n### Contacts\n\n| Tool | Description | Mode |\n|------|-------------|------|\n| `activecampaign_create_or_update_contact` | Create a new contact or update an existing one by email (upsert) | Write |\n| `activecampaign_add_contact_to_list` | Subscribe or unsubscribe a contact from a list | Write |\n| `activecampaign_add_contact_to_automation` | Enroll an existing contact in an automation workflow | Write |\n| `activecampaign_add_tag_to_contact` | Associate a tag with a contact | Write |\n| `activecampaign_add_contact_note` | Add a note to a contact record | Write |\n| `activecampaign_create_contact_task` | Create a task associated with a contact | Write |\n| `activecampaign_delete_contact` | Permanently delete a contact | Write |\n\n### Accounts & Deals\n\n| Tool | Description | Mode |\n|------|-------------|------|\n| `activecampaign_create_account` | Create a new account/organization in ActiveCampaign | Write |\n| `activecampaign_create_deal` | Create a new deal in a pipeline | Write |\n| `activecampaign_create_deal_note` | Add a note to a deal | Write |\n| `activecampaign_add_secondary_contact_to_deal` | Add a secondary contact to a deal | Write |\n| `activecampaign_create_deal_pipeline` | Create a new deal pipeline with default stages | Write |\n| `activecampaign_delete_deal` | Permanently delete a deal | Write |\n\n### Campaigns & Automations\n\n| Tool | Description | Mode |\n|------|-------------|------|\n| `activecampaign_create_campaign` | Create a new email campaign | Write |\n| `activecampaign_create_duplicate_campaign` | Duplicate an existing campaign | Write |\n| `activecampaign_create_message` | Create an email message template | Write |\n| `activecampaign_create_segment` | Create an advanced contact segment | Write |\n\n### Lists & Tags\n\n| Tool | Description | Mode |\n|------|-------------|------|\n| `activecampaign_create_list` | Create a new subscriber list | Write |\n| `activecampaign_add_list_group_permission` | Grant a user group access to a list | Write |\n| `activecampaign_create_tag` | Create a new tag with explicit type | Write |\n\n### Custom Fields\n\n| Tool | Description | Mode |\n|------|-------------|------|\n| `activecampaign_add_custom_field` | Create a new custom contact field | Write |\n| `activecampaign_add_custom_field_options` | Add options to a dropdown/radio custom field | Write |\n| `activecampaign_create_account_custom_field_meta` | Create a custom field for accounts | Write |\n| `activecampaign_create_deal_custom_field_meta` | Create a custom field for deals | Write |\n\n### E-Commerce & Events\n\n| Tool | Description | Mode |\n|------|-------------|------|\n| `activecampaign_create_an_order` | Record an e-commerce order | Write |\n| `activecampaign_create_customer` | Create an e-commerce customer | Write |\n| `activecampaign_create_event_tracking_event` | Whitelist a new event name for tracking | Write |\n| `activecampaign_create_browse_session_cart` | Track add-to-cart event | Write |\n\n### Webhooks & Connections\n\n| Tool | Description | Mode |\n|------|-------------|------|\n| `activecampaign_create_webhook` | Create a webhook for real-time notifications | Write |\n| `activecampaign_create_connection` | Create a connection to an external service | Write |\n\n### Bulk Operations\n\n| Tool | Description | Mode |\n|------|-------------|------|\n| `activecampaign_bulk_import_contacts` | Import up to 250,000 contacts asynchronously | Write |\n| `activecampaign_bulk_delete_accounts` | Delete multiple accounts in one operation | Write |\n\n## Code Examples\n\n### Add a contact to a list\n\n```bash\nclawlink_call_tool --tool \"activecampaign_add_contact_to_list\" \\\n  --params '{\n    \"list_id\": \"YOUR_LIST_ID\",\n    \"contact_id\": \"YOUR_CONTACT_ID\"\n  }'\n```\n\n### Create or update a contact (upsert)\n\n```bash\nclawlink_call_tool --tool \"activecampaign_create_or_update_contact\" \\\n  --params '{\n    \"email\": \"john.doe@example.com\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"phone\": \"+1-555-0100\"\n  }'\n```\n\n### Enroll a contact in an automation\n\n```bash\nclawlink_call_tool --tool \"activecampaign_add_contact_to_automation\" \\\n  --params '{\n    \"contact_email\": \"john.doe@example.com\",\n    \"automation_id\": \"YOUR_AUTOMATION_ID\"\n  }'\n```\n\n### Create a new deal\n\n```bash\nclawlink_call_tool --tool \"activecampaign_create_deal\" \\\n  --params '{\n    \"title\": \"Enterprise Deal - Acme Corp\",\n    \"pipeline_id\": \"YOUR_PIPELINE_ID\",\n    \"stage_id\": \"YOUR_STAGE_ID\",\n    \"owner_id\": 1\n  }'\n```\n\n## Discovery Workflow\n\n1. Call `clawlink_list_integrations` to confirm ActiveCampaign is connected.\n2. Call `clawlink_list_tools --integration activecampaign` to see the live catalog.\n3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.\n4. If the user describes a capability but the exact tool is unclear, call `clawlink_search_tools` with a short query and integration `activecampaign`.\n5. If no ActiveCampaign tools appear, direct the user to https://claw-link.dev/dashboard?add=activecampaign.\n\n## Execution Workflow\n\n```\n┌─────────────────────────────────────────────────────────────┐\n│  READ OPERATIONS (Safe)                                     │\n│  list → get → search → describe → call                     │\n│                                                             │\n│  Example: List contacts → Search by email → Show results     │\n└─────────────────────────────────────────────────────────────┘\n                              │\n                              ▼\n┌─────────────────────────────────────────────────────────────┐\n│  WRITE OPERATIONS (Require Confirmation)                   │\n│  list → get → describe → preview → confirm → call            │\n│                                                             │\n│  Example: Describe tool → Preview changes → User approves   │\n│           → Execute update                                   │\n└─────────────────────────────────────────────────────────────┘\n```\n\n1. For unfamiliar tools, ambiguous requests, or any write action, call `clawlink_describe_tool` first.\n2. Use the returned guidance, schema, `whenToUse`, `askBefore`, `safeDefaults`, `examples`, and `followups` to shape the call.\n3. Prefer read, list, search, and get operations before writes when that reduces ambiguity.\n4. For writes or anything marked as requiring confirmation, call `clawlink_preview_tool` first.\n5. Execute with `clawlink_call_tool`. Pass confirmation only after the preview matches the user's intent.\n6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.\n\n## Notes\n\n- ActiveCampaign contact IDs are numeric. Use the contact's email or search tools to find IDs before performing operations.\n- Automation IDs must correspond to existing, active automations in the account.\n- Bulk import is asynchronous — the API returns immediately with a batch ID. Use the callback parameter to get notified when complete.\n- Deal pipelines must exist before creating deals — retrieve pipeline IDs via the ActiveCampaign UI or API first.\n- Table and worksheet IDs containing `{` and `}` must be URL-encoded (`%7B` and `%7D`) in raw API URLs. ClawLink handles this automatically.\n\n## Error Handling\n\n| Status / Error | Meaning |\n|----------------|---------|\n| Tool not found | The tool name does not exist in the current catalog. Verify with `clawlink_list_tools --integration activecampaign`. |\n| Missing connection | ActiveCampaign is not connected. Direct the user to https://claw-link.dev/dashboard?add=activecampaign. |\n| `ContactNotFound` | Contact does not exist. Use search or list tools to find the correct ID. |\n| `AutomationNotFound` | Automation ID does not exist or is not active. |\n| `ListNotFound` | List ID does not exist. Retrieve list IDs via the ActiveCampaign UI. |\n| `InvalidArgument` | Invalid parameter or missing required field. Review the tool schema with `clawlink_describe_tool`. |\n| Write rejected | User did not confirm a write action. Always confirm before executing writes. |\n\n### Troubleshooting: Tools Not Visible\n\n1. Check that the ClawLink plugin is installed:\n   ```bash\n   openclaw plugins list\n   ```\n2. If the plugin is installed but tools are missing, tell the user to send `/new` as a standalone message to reload the catalog.\n3. If a fresh chat does not help, run:\n   ```bash\n   openclaw config set tools.alsoAllow '[\"clawlink-plugin\"]' --strict-json\n   openclaw gateway restart\n   ```\n4. After restart, tell the user to send `/new` again and retry.\n\n### Troubleshooting: Invalid Tool Call\n\n1. Ensure the integration slug is exactly `activecampaign`.\n2. Use `clawlink_describe_tool` to verify parameter names and types before calling.\n3. For write operations, always call `clawlink_preview_tool` first.\n\n## Resources\n\n- [ActiveCampaign API Overview](https://developers.activecampaign.com/reference/overview)\n- [ActiveCampaign Contact API](https://developers.activecampaign.com/reference/create-contact)\n- [ActiveCampaign Deal API](https://developers.activecampaign.com/reference/deals)\n- [ActiveCampaign Automation API](https://developers.activecampaign.com/reference/automations)\n- ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=activecampaign-marketing\n- ClawLink Docs: https://docs.claw-link.dev/openclaw\n- ClawLink Verification: https://claw-link.dev/verify\n\n## Related Skills\n\n- [Mailchimp](https://clawhub.ai/hith3sh/mailchimp-email-marketing) — For Mailchimp email marketing operations\n- [Brevo](https://clawhub.ai/hith3sh/brevo-email) — For Brevo/Sendinblue email campaigns\n- [Klaviyo](https://clawhub.ai/hith3sh/klaviyo-email-marketing) — For Klaviyo e-commerce email marketing\n\n---\n\n**Powered by [ClawLink](https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=activecampaign-marketing)** — an integration hub for OpenClaw\n\n![ClawLink Logo](https://raw.githubusercontent.com/ClawLink-HQ/clawlink/main/public/images/logo/link_logo_black_small.png)\n","topics":["Marketing"],"tags":{"latest":"1.0.5"},"stats":{"comments":0,"downloads":1779,"installsAllTime":80,"installsCurrent":23,"stars":6,"versions":7},"createdAt":1778002185790,"updatedAt":1780988587562},"latestVersion":{"version":"1.0.5","createdAt":1780988587562,"changelog":"Add UTM attribution tags (utm_source=clawhub) to ClawLink branding links so visits from this skill page are tracked as a distinct traffic source.","license":"MIT-0"},"metadata":null,"owner":{"handle":"hith3sh","userId":"s173vws87a7ss71xf9rq53k5gd8568kv","displayName":"Jay","image":"https://avatars.githubusercontent.com/u/83839061?v=4"},"moderation":null}