Update campaign settings
documentedUpdate the settings for a specific campaign.
PATCH /campaigns/{campaign_id}Campaignsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$dc}}.api.mailchimp.com/3.0/campaigns/{{$campaign_id}}" \
-X PATCH \
-u "anystring:{{MAILCHIMP_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"settings": {"subject_line": "{{$subject_line}}", "title": "{{$title}}", "from_name": "{{$from_name}}", "reply_to": "{{$reply_to}}"}}'