Create mailing list
documentedCreate a new mailing list.
POST /v3/listsMailing Listsno 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://api.mailgun.net/v3/lists" \
-X POST \
-u "api:{{MAILGUN_API_KEY}}" \
-F "address={{$address}}" \
-F "name={{$name}}" \
-F "description={{$description}}" \
-F "access_level={{$access_level}}" \
-F "reply_preference={{$reply_preference}}"