hvac-marketing-skills/tools/clis/mailchimp.js
Corey Haines f123804827 fix: correct API issues found by codex review across 10 CLIs
Fixes found by automated codex review of all 47 CLI tools:

- resend: webhook field name endpoint_url -> endpoint
- mailchimp: change from Bearer to Basic auth per API docs
- kit: fail fast when api_secret required but not set
- activecampaign: automation add-contact needs --contact-id not --email
- google-ads: budget updateMask must be snake_case (amount_micros)
- meta-ads: special_ad_categories default to ['NONE'] not empty array
- linkedin-ads: add required X-RestLi-Protocol-Version header
- onesignal: auth prefix should be Key, not Basic
- mixpanel: query dates must be YYYY-MM-DD, not relative strings
- wistia: change from Bearer to Basic auth per API docs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 11:57:42 -08:00

213 lines
6.7 KiB
JavaScript
Executable file

#!/usr/bin/env node
const API_KEY = process.env.MAILCHIMP_API_KEY
if (!API_KEY) {
console.error(JSON.stringify({ error: 'MAILCHIMP_API_KEY environment variable required' }))
process.exit(1)
}
const dc = API_KEY.split('-').pop()
const BASE_URL = `https://${dc}.api.mailchimp.com/3.0`
async function api(method, path, body) {
const auth = 'Basic ' + Buffer.from(`anystring:${API_KEY}`).toString('base64')
const headers = {
'Authorization': auth,
'Content-Type': 'application/json',
}
if (args['dry-run']) {
return { _dry_run: true, method, url: `${BASE_URL}${path}`, headers: { ...headers, Authorization: '***' }, body: body || undefined }
}
const res = await fetch(`${BASE_URL}${path}`, {
method,
headers,
body: body ? JSON.stringify(body) : undefined,
})
const text = await res.text()
try {
return JSON.parse(text)
} catch {
return { status: res.status, body: text }
}
}
function parseArgs(args) {
const result = { _: [] }
for (let i = 0; i < args.length; i++) {
const arg = args[i]
if (arg.startsWith('--')) {
const key = arg.slice(2)
const next = args[i + 1]
if (next && !next.startsWith('--')) {
result[key] = next
i++
} else {
result[key] = true
}
} else {
result._.push(arg)
}
}
return result
}
const args = parseArgs(process.argv.slice(2))
const [cmd, sub, ...rest] = args._
async function main() {
let result
switch (cmd) {
case 'lists':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args.count) params.set('count', args.count)
if (args.offset) params.set('offset', args.offset)
result = await api('GET', `/lists?${params}`)
break
}
case 'get':
result = await api('GET', `/lists/${rest[0]}`)
break
default:
result = { error: 'Unknown lists subcommand. Use: list, get' }
}
break
case 'members':
switch (sub) {
case 'list': {
if (!args['list-id']) {
result = { error: '--list-id is required for members list' }
break
}
const params = new URLSearchParams()
if (args.count) params.set('count', args.count)
if (args.offset) params.set('offset', args.offset)
if (args.status) params.set('status', args.status)
result = await api('GET', `/lists/${args['list-id']}/members?${params}`)
break
}
case 'add': {
if (!args['list-id']) {
result = { error: '--list-id is required for members add' }
break
}
const body = {
email_address: args.email,
status: args.status || 'subscribed',
}
if (args['first-name'] || args['last-name']) {
body.merge_fields = {}
if (args['first-name']) body.merge_fields.FNAME = args['first-name']
if (args['last-name']) body.merge_fields.LNAME = args['last-name']
}
if (args.tags) body.tags = args.tags.split(',')
result = await api('POST', `/lists/${args['list-id']}/members`, body)
break
}
case 'update': {
if (!args['list-id']) {
result = { error: '--list-id is required for members update' }
break
}
const subscriberHash = rest[0]
const body = {}
if (args.status) body.status = args.status
if (args['first-name'] || args['last-name']) {
body.merge_fields = {}
if (args['first-name']) body.merge_fields.FNAME = args['first-name']
if (args['last-name']) body.merge_fields.LNAME = args['last-name']
}
if (args.tags) body.tags = args.tags.split(',')
result = await api('PATCH', `/lists/${args['list-id']}/members/${subscriberHash}`, body)
break
}
default:
result = { error: 'Unknown members subcommand. Use: list, add, update' }
}
break
case 'campaigns':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args.count) params.set('count', args.count)
if (args.offset) params.set('offset', args.offset)
if (args.status) params.set('status', args.status)
if (args.type) params.set('type', args.type)
result = await api('GET', `/campaigns?${params}`)
break
}
case 'get':
result = await api('GET', `/campaigns/${rest[0]}`)
break
case 'create': {
const body = {
type: args.type || 'regular',
recipients: {
list_id: args['list-id'],
},
settings: {},
}
if (args.subject) body.settings.subject_line = args.subject
if (args['from-name']) body.settings.from_name = args['from-name']
if (args['reply-to']) body.settings.reply_to = args['reply-to']
if (args.title) body.settings.title = args.title
result = await api('POST', '/campaigns', body)
break
}
case 'send':
result = await api('POST', `/campaigns/${rest[0]}/actions/send`)
break
default:
result = { error: 'Unknown campaigns subcommand. Use: list, get, create, send' }
}
break
case 'reports':
switch (sub) {
case 'get':
result = await api('GET', `/reports/${rest[0]}`)
break
default:
result = { error: 'Unknown reports subcommand. Use: get' }
}
break
case 'automations':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args.count) params.set('count', args.count)
if (args.offset) params.set('offset', args.offset)
result = await api('GET', `/automations?${params}`)
break
}
default:
result = { error: 'Unknown automations subcommand. Use: list' }
}
break
default:
result = {
error: 'Unknown command',
usage: {
lists: 'lists [list|get] [id] [--count <n>] [--offset <n>]',
members: 'members [list|add|update] [subscriber_hash] --list-id <id> [--email <email>] [--status <status>] [--first-name <name>] [--last-name <name>] [--tags <t1,t2>]',
campaigns: 'campaigns [list|get|create|send] [id] [--list-id <id>] [--subject <subject>] [--from-name <name>] [--reply-to <email>]',
reports: 'reports get <campaign_id>',
automations: 'automations list [--count <n>] [--offset <n>]',
}
}
}
console.log(JSON.stringify(result, null, 2))
}
main().catch(err => {
console.error(JSON.stringify({ error: err.message }))
process.exit(1)
})