Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
API referenceCampaigns

Campaigns

POST/api/agents/tools/campaigns/create · /get · /update
ActionRouteRequired
createPOST /api/agents/tools/campaigns/createsite_id, title
listPOST /api/agents/tools/campaigns/getsite_id
updatePOST /api/agents/tools/campaigns/updatesite_id, campaign_id

Optional: description, status (pending, active, completed), type (email, social, ad), priority, budget, revenue, due_date.

curl -X POST "https://backend.makinari.com/api/agents/tools/campaigns/create" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "site_id": "YOUR_SITE_ID", "title": "Q1 Outreach Campaign", "type": "email", "status": "active", "priority": "high" }'
{ "success": true, "campaign": { "id": "...", "title": "Q1 Outreach Campaign" } }

MCP: Marketing tools.

Last updated on