Campaigns
POST
/api/agents/tools/campaigns/create · /get · /update| Action | Route | Required |
|---|---|---|
| create | POST /api/agents/tools/campaigns/create | site_id, title |
| list | POST /api/agents/tools/campaigns/get | site_id |
| update | POST /api/agents/tools/campaigns/update | site_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