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 | Description | Required |
---|---|---|---|---|
username | Account name | STRING | Your account name, e.g. https://{youraccountname}.api-us1.com | true |
key | Key | STRING | true | |
value | API Key | STRING | true |
Actions
Create Account
Name: createAccount
Creates a new account.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
account | Account | OBJECT Properties{STRING(name), STRING(accountUrl)} | false |
Example JSON Structure
{ "label" : "Create Account", "name" : "createAccount", "parameters" : { "account" : { "name" : "", "accountUrl" : "" } }, "type" : "active-campaign/v1/createAccount"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
account | OBJECT Properties{STRING(name), STRING(accountUrl), STRING(id)} |
Output Example
{ "account" : { "name" : "", "accountUrl" : "", "id" : "" }}
Create Contact
Name: createContact
Creates a new contact.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
contact | Contact | OBJECT Properties{STRING(email), STRING(firstName), STRING(lastName), STRING(phone)} | false |
Example JSON Structure
{ "label" : "Create Contact", "name" : "createContact", "parameters" : { "contact" : { "email" : "", "firstName" : "", "lastName" : "", "phone" : "" } }, "type" : "active-campaign/v1/createContact"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
contact | OBJECT Properties{STRING(email), STRING(firstName), STRING(lastName), STRING(phone), STRING(id)} |
Output Example
{ "contact" : { "email" : "", "firstName" : "", "lastName" : "", "phone" : "", "id" : "" }}
Create Task
Name: createTask
Creates a new task.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
dealTask | Deal Task | OBJECT Properties{STRING(title), INTEGER(relid), DATE(duedate), INTEGER(dealTasktype)} | false |
Example JSON Structure
{ "label" : "Create Task", "name" : "createTask", "parameters" : { "dealTask" : { "title" : "", "relid" : 1, "duedate" : "2021-01-01", "dealTasktype" : 1 } }, "type" : "active-campaign/v1/createTask"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
dealTask | OBJECT Properties{STRING(id), STRING(title), INTEGER(relid), DATE(duedate), INTEGER(dealTasktype)} |
Output Example
{ "dealTask" : { "id" : "", "title" : "", "relid" : 1, "duedate" : "2021-01-01", "dealTasktype" : 1 }}