
Security News
The Code You Didn't Write Is Still Yours to Defend
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.
@robinpath/mailchimp
Advanced tools
Mailchimp Marketing API — audiences (lists), members (subscribers), tags, and member CRUD. Uses the encrypted credential vault for API keys.
Mailchimp module for RobinPath.
The mailchimp module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
robinpath add @robinpath/mailchimp
1. Set up credentials
mailchimp.setCredentials "abc123-us21" "us21"
2. Get all audiences/lists in the account
mailchimp.getLists
| Function | Description |
|---|---|
mailchimp.setCredentials | Store Mailchimp API key and server prefix for authentication |
mailchimp.getLists | Get all audiences/lists in the account |
mailchimp.getList | Get details for a specific audience/list |
mailchimp.createList | Create a new audience/list with contact info and campaign defaults |
mailchimp.deleteList | Delete an audience/list |
mailchimp.getMembers | Get members of an audience/list with optional filtering |
mailchimp.getMember | Get a specific member by email address |
mailchimp.addMember | Add a new member to an audience/list |
mailchimp.updateMember | Update an existing member's information |
mailchimp.removeMember | Archive/remove a member from an audience/list |
mailchimp.addTag | Add tags to a member in an audience/list |
mailchimp.removeTag | Remove tags from a member in an audience/list |
mailchimp.getCampaigns | List campaigns with optional filtering |
mailchimp.getCampaign | Get details for a specific campaign |
mailchimp.createCampaign | Create a new campaign (regular, plaintext, or absplit) |
mailchimp.updateCampaign | Update campaign settings |
mailchimp.deleteCampaign | Delete a campaign |
mailchimp.sendCampaign | Send a campaign immediately |
mailchimp.scheduleCampaign | Schedule a campaign for future delivery |
mailchimp.getCampaignContent | Get the content of a campaign |
mailchimp.setCampaignContent | Set the content of a campaign with HTML or a template |
mailchimp.getTemplates | List available email templates |
mailchimp.getTemplate | Get details for a specific template |
mailchimp.searchMembers | Search for members across all lists or a specific list |
mailchimp.getListActivity | Get recent activity stats for an audience/list |
mailchimp.getLists
mailchimp.getList "abc123"
mailchimp.createList "My Newsletter" {"company": "Acme", "fromEmail": "news@acme.com", "fromName": "Acme News"}
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/mailchimp";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
mailchimp.setCredentials "abc123-us21" "us21"
mailchimp.getLists
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/activecampaign — ActiveCampaign module for complementary functionality@robinpath/brevo — Brevo module for complementary functionality@robinpath/convertkit — Convertkit module for complementary functionality@robinpath/sendgrid — SendGrid module for complementary functionality@robinpath/lemlist — Lemlist module for complementary functionalityMIT
FAQs
Mailchimp Marketing API — audiences (lists), members (subscribers), tags, and member CRUD. Uses the encrypted credential vault for API keys.
We found that @robinpath/mailchimp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.