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
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
username | Account name | STRING | TEXT | Your account name, e.g. https://{youraccountname}.api-us1.com | true |
key | Key | STRING | TEXT | true | |
value | API Key | STRING | TEXT | true |
Actions
Create Account
Name: createAccount
Creates a new account.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
__item | Account | OBJECT Properties{{STRING(name), STRING(accountUrl)}(account)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | OBJECT 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
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
__item | Contact | OBJECT Properties{{STRING(email), STRING(firstName), STRING(lastName), STRING(phone)}(contact)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | OBJECT 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
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
__item | Task | OBJECT Properties{{STRING(title), INTEGER(relid), DATE(duedate), INTEGER(dealTasktype)}(dealTask)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | OBJECT 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"}