Update workflow email
documentedUpdate a classic automation workflow email.
PATCH /automations/{workflow_id}/emails/{workflow_email_id}Classic Automationsno 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://{{MAILCHIMP_DC}}.api.mailchimp.com/3.0/automations/{{$workflow_id}}/emails/{{$workflow_email_id}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"subject_line": "{{$subject_line}}", "preview_text": "{{$preview_text}}", "from_name": "{{$from_name}}", "reply_to": "{{$reply_to}}", "template_id": {{$template_id}}, "title": "{{$title}}", "html": "{{$html}}"}'