Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
@meta-dev-zone/node-active-campaign
Advanced tools
node package for active campaign api integration
node-active-campaign package is simple and easy to use for using the apis of ActiveCampaign
node-active-campaign package is under development we will update time to time. Below in the table, You can check the function are available for different APIs implementation.
Install using NPM:
npm i @meta-dev-zone/node-active-campaign
If you don't use NPM, try this:
git clone git://github.com:metadevzone/node-active-campaign.git
node-active-campaign
You have ActiveCampaign API Access with URL and Key
Collection | Functions |
---|---|
index | config , |
contact | createContact , deleteContact , addContactToList |
list | createList |
tag | createTag , createContactTags |
You can use the functions by importing the package and calling the functions. Below is the example of how to use the functions.
You can find Test examples in node-active-campaign/src/test/index.js
//How to import package
const activeCampaign = require("@meta-dev-zone/node-active-campaign");
//set configuration
//During the configuration, you need to provide the API URL and API key. You can get the API URL and API key from your ActiveCampaign account. Here is an example of how to set the configuration:
await activeCampaign.config(
"https://xxxxxxxxxxxxxxxxx.api-us1.com",
"e43cdd65d06d299bcdf071e68d794c4a4692c2495b50674ebc91aab3c21ee225dc5f54de"
);
//*************************{contact functions}*************************//
//create contact
await activeCampaign.contact.createContact({
email: "",
firstName: "",
lastName: "",
phone: "",
});
//delete contact
await activeCampaign.contact.deleteContact(1);
//add contact to list
await activeCampaign.contact.addContactToList({
contact: 1,
list: 1,
status: 1,
});
//*************************{tag functions}*************************//
//create tag
await activeCampaign.tag.createTag({
tag: "",
tagType: "",
description: "",
});
//add tag to a contact
await activeCampaign.tag.createContactTag({
contact: 1,
tag: 1,
});
//*************************{list functions}*************************//
//create list
await activeCampaign.list.createList({
name: "",
stringid: "",
sender_url: "",
sender_reminder: "",
user: "",
});
link to the package node-active-campaign
Meta Dev Zone – meta-dev-zone
Package | Version | Dev |
---|---|---|
axios | ^1.6.8 | ✖ |
There is an email you can discuss any Issue or Query team@metadevzone.com
All versions are <major>.<minor>.<patch>
which will be incremented for
breaking backward compat and major reworks, new features without breaking
change, and bug fixes, respectively Semantic
versioning.
FAQs
node package for active campaign api integration
We found that @meta-dev-zone/node-active-campaign demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.