Active Campaign

Learn how to use Active Campaign with Composio

Overview

Enum

ACTIVE_CAMPAIGN

Description

ActiveCampaign provides APIs for marketing automation, customer relationship management (CRM), and email marketing.

Authentication Details

api_key
stringRequired
api_url
stringRequired

Actions

List all contacts in activecampaign. this action allows you to: 1. list all contacts with pagination 2. search contacts by name, organization, phone, or email 3. filter contacts by email pattern 4. sort contacts by various fields 5. filter contacts by creation and update dates 6. filter contacts by list, tag, or segment

Action Parameters

limit
integerDefaults to 20
search
string
email_like
string
orders
object
filters
object
id_greater
integer
id_less
integer
listid
string
tagid
integer
segmentid
integer

Action Response

data
object
successful
boolean
error

Add a note to a contact in activecampaign. the note will be associated with a contact as a subscriber type. the tool will first find the contact id using the provided email address and then create the note.

Action Parameters

note
stringRequired
contact_email
stringRequired

Action Response

data
object
successful
boolean
error

Find a specific contact in activecampaign using either their email address, id, or phone number. this action provides a more efficient way to find a specific contact instead of listing all contacts.

Action Parameters

id
string
email
string
phone
string

Action Response

data
object
successful
boolean
error

Creates a new contact in activecampaign with the specified details. this action allows you to create a new contact with basic information like email, name, phone, organization details, and tags. the email address is the only required field, while all other fields are optional.

Action Parameters

email
stringRequired
first_name
string
last_name
string
phone
string
organization_name
string
job_title
string
tags
string

Action Response

data
object
successful
boolean
error

Create a task associated with a contact in activecampaign. this action allows you to create a new task that will be associated with a specific contact in your activecampaign account. the task can include details such as due date, title, description, and can be assigned to a specific user.

Action Parameters

relid
integerRequired
duedate
stringRequired
dealTasktype
stringRequired
title
string
note
string
edate
string
assignee
integer
status
integer

Action Response

data
object
successful
boolean
error

Subscribe or unsubscribe a contact from a list in activecampaign. the tool requires either a contact’s email address or contact id, and can perform either a subscribe or unsubscribe action on a specified list.

Action Parameters

action
stringRequired
list_id
stringRequired
email
string
contact_id
string

Action Response

data
object
successful
boolean
error

Manage tags for a contact in activecampaign. this action allows adding or removing tags from a contact. the action can be performed using either the contact’s id or email address.

Action Parameters

contact_id
string
contact_email
string
action
stringRequired
tags
stringRequired

Action Response

success
boolean
message
string
data
successful
boolean
error