Skip to content

Encharge

Encharge is a marketing automation platform that helps businesses automate their customer communication and marketing campaigns.

Categories: marketing-automation

Type: encharge/v1


Connections

Version: 1

API Key

Properties

NameLabelTypeDescriptionRequired
keyKeySTRINGtrue
valueValueSTRINGtrue

Actions

Create Email Template

Name: createEmail

Create email template

Properties

NameLabelTypeDescriptionRequired
nameNameSTRINGName of the email templatetrue
subjectSubjectSTRINGSubject of the emailtrue
fromEmailFrom EmailSTRINGFrom address to send the email fromtrue
replyEmailReply EmailSTRINGAddress that recipients will reply to by default.false

Example JSON Structure

{
"label" : "Create Email Template",
"name" : "createEmail",
"parameters" : {
"name" : "",
"subject" : "",
"fromEmail" : "",
"replyEmail" : ""
},
"type" : "encharge/v1/createEmail"
}

Output

Type: OBJECT

Properties

NameTypeDescription
emailOBJECT
Properties {INTEGER(id), STRING(name), STRING(subject), STRING(fromEmail), STRING(replyEmail)}

Output Example

{
"email" : {
"id" : 1,
"name" : "",
"subject" : "",
"fromEmail" : "",
"replyEmail" : ""
}
}

Create People

Name: createPeople

Creates new People

Properties

NameLabelTypeDescriptionRequired
peoplePeopleARRAY
Items [{STRING(email), STRING(firstName), STRING(lastName), STRING(website), STRING(title), STRING(phone)}]
true

Example JSON Structure

{
"label" : "Create People",
"name" : "createPeople",
"parameters" : {
"people" : [ {
"email" : "",
"firstName" : "",
"lastName" : "",
"website" : "",
"title" : "",
"phone" : ""
} ]
},
"type" : "encharge/v1/createPeople"
}

Output

Type: OBJECT

Properties

NameTypeDescription
usersARRAY
Items [{STRING(email), STRING(firstName), STRING(lastName), STRING(website), STRING(title), STRING(id), STRING(phone)}]

Output Example

{
"users" : [ {
"email" : "",
"firstName" : "",
"lastName" : "",
"website" : "",
"title" : "",
"id" : "",
"phone" : ""
} ]
}

Add Tag

Name: addTag

Add tag(s) to an existing user.

Properties

NameLabelTypeDescriptionRequired
tagTagSTRINGTag(s) to add. To add multiple tags, use a comma-separated list, e.g. tag1,tag2true
emailEmailSTRINGEmail of the person.true

Example JSON Structure

{
"label" : "Add Tag",
"name" : "addTag",
"parameters" : {
"tag" : "",
"email" : ""
},
"type" : "encharge/v1/addTag"
}

Output

This action does not produce any output.


Additional instructions


CONNECTION

API Location