Skip to content

ActiveCampaign

ActiveCampaign is a customer experience automation platform that offers email marketing, marketing automation, sales automation, and CRM tools.

Categories: crm, marketing-automation

Type: active-campaign/v1


Connections

Version: 1

API Key

Properties

NameLabelTypeControl TypeDescriptionRequired
usernameAccount nameSTRINGTEXTYour account name, e.g. https://{youraccountname}.api-us1.comtrue
keyKeySTRINGTEXTtrue
valueAPI KeySTRINGTEXTtrue

Actions

Create Account

Name: createAccount

Creates a new account.

Properties

NameLabelTypeControl TypeDescriptionRequired
__itemAccountOBJECT
Properties {{STRING(name), STRING(accountUrl)}(account)}
OBJECT_BUILDERnull

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {{STRING(name), STRING(accountUrl)}(account)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Account",
"name" : "createAccount",
"parameters" : {
"__item" : {
"account" : {
"name" : "",
"accountUrl" : ""
}
}
},
"type" : "active-campaign/v1/createAccount"
}

Create Contact

Name: createContact

Creates a new contact.

Properties

NameLabelTypeControl TypeDescriptionRequired
__itemContactOBJECT
Properties {{STRING(email), STRING(firstName), STRING(lastName), STRING(phone)}(contact)}
OBJECT_BUILDERnull

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {{STRING(email), STRING(firstName), STRING(lastName), STRING(phone)}(contact)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Contact",
"name" : "createContact",
"parameters" : {
"__item" : {
"contact" : {
"email" : "",
"firstName" : "",
"lastName" : "",
"phone" : ""
}
}
},
"type" : "active-campaign/v1/createContact"
}

Create Task

Name: createTask

Creates a new task.

Properties

NameLabelTypeControl TypeDescriptionRequired
__itemTaskOBJECT
Properties {{STRING(title), INTEGER(relid), DATE(duedate), INTEGER(dealTasktype)}(dealTask)}
OBJECT_BUILDERnull

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {{STRING(id), STRING(title), INTEGER(relid), DATE(duedate), INTEGER(dealTasktype)}(dealTask)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Task",
"name" : "createTask",
"parameters" : {
"__item" : {
"dealTask" : {
"title" : "",
"relid" : 1,
"duedate" : "2021-01-01",
"dealTasktype" : 1
}
}
},
"type" : "active-campaign/v1/createTask"
}