Where is the MailChimp Connector for PowerShell?

╄→尐↘猪︶ㄣ 提交于 2021-02-11 14:23:39

问题


How and where "is" the connector:

MailChimp

MailChimp is a SaaS service that allows businesses to manage and automate email marketing activities, including sending marketing emails, automated messages and targeted campaigns.

This connector is available in the following products and regions:

https://docs.microsoft.com/en-us/connectors/mailchimp/


reading in env variables as:

nicholas@mordor:~/chimp$ 
nicholas@mordor:~/chimp$ pwsh chimp.ps1 

Name                           Value
----                           -----
chimp_key                      c.................7
foo                            bar

nicholas@mordor:~/chimp$ 
nicholas@mordor:~/chimp$ cat chimp.ps1 
$acctname = Get-ChildItem Env:chimp_account
$password = Get-ChildItem Env:chimp_password
$key      = Get-ChildItem Env:chimp_key
$foo      = Get-ChildItem Env:foo



$key
$foo

nicholas@mordor:~/chimp$ 

How is the API used to get back a list of campaigns, or other trivial query or usage, for this API?

see also:

Updated how can i edit my script to import additionnal fields to mailchimp

Missing API key when making API RestMethod Call After HTTP Basic authentication in Mailchimp

来源:https://stackoverflow.com/questions/65156395/where-is-the-mailchimp-connector-for-powershell

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!