Skip to content

Acumbamail

Acumbamail is an email marketing and automation platform that allows users to create, manage, and analyze email campaigns, newsletters, and SMS marketing with an intuitive interface and API integration.

Categories: marketing-automation

Type: acumbamail/v1


Connections

Version: 1

Authorization token

Properties

NameLabelTypeDescriptionRequired
auth_tokenAccess tokenSTRINGtrue

Actions

Add Subscriber

Name: addSubscriber

Add a subscriber to a list.

Properties

NameLabelTypeDescriptionRequired
list_idList IdINTEGERList identifier.true

Example JSON Structure

{
"label" : "Add Subscriber",
"name" : "addSubscriber",
"parameters" : {
"list_id" : 1
},
"type" : "acumbamail/v1/addSubscriber"
}

Output

Type: INTEGER

Delete Subscriber

Name: deleteSubscriber

Removes a subscriber from a list.

Properties

NameLabelTypeDescriptionRequired
list_idList IdINTEGERList identifier.true
emailEmailSTRING
Depends On list_id
Subscriber email address.true

Example JSON Structure

{
"label" : "Delete Subscriber",
"name" : "deleteSubscriber",
"parameters" : {
"list_id" : 1,
"email" : ""
},
"type" : "acumbamail/v1/deleteSubscriber"
}

Output

This action does not produce any output.

Create Subscriber List

Name: createSubscriberList

Creates a new subscribers list.

Properties

NameLabelTypeDescriptionRequired
emailEmailSTRINGEmail address that will be used for list notifications.true
nameNameSTRINGList nametrue
companyCompanySTRINGCompany that the list belongs tofalse
countryCountrySTRINGCountry where the list comes fromfalse
cityCitySTRINGCity of the companyfalse
addressAddressSTRINGAddress of the companyfalse
phonePhoneSTRINGPhone number of the companyfalse

Example JSON Structure

{
"label" : "Create Subscriber List",
"name" : "createSubscriberList",
"parameters" : {
"email" : "",
"name" : "",
"company" : "",
"country" : "",
"city" : "",
"address" : "",
"phone" : ""
},
"type" : "acumbamail/v1/createSubscriberList"
}

Output

Type: INTEGER

Delete Subscriber List

Name: deleteSubscriberList

Deletes a list of subscribers.

Properties

NameLabelTypeDescriptionRequired
list_idList IdINTEGERList identifier.true

Example JSON Structure

{
"label" : "Delete Subscriber List",
"name" : "deleteSubscriberList",
"parameters" : {
"list_id" : 1
},
"type" : "acumbamail/v1/deleteSubscriberList"
}

Output

This action does not produce any output.