To use the MailChimp connector, add the <mailchimp.init>
element in your configuration before carrying out any other MailChimp operations.
MailChimp uses the access token as an API key when considering authentication. F or more information on authentication, see http://apidocsdeveloper.mailchimp.com/documentation/mailchimp/guides/how-to-use-oauth2/.
Code Block | ||||
---|---|---|---|---|
| ||||
<mailchimp.init> <apiUrl>{$ctx:apiUrl}</apiUrl> <apiKey><apiVersion>{$ctx:apiVersion}</apiVersion> <accessToken>{$ctx:apiKeyaccessToken}</apiKey> <format>accessToken> <blocking>{$ctx:formatblocking}</format>blocking> </mailchimp.init> |
Properties
-
apiUrl:
The base endpoint URL of the MailChimp API. - apiKey
apiVersion:
The API authentication key to access version of the MailChimp API. -
formataccessToken:
The format value of the response expected from the API. It can be either JSON or XMLAccess Token to access the MailChimp API via request. -
blocking:
The blocking parameter is helping connector performs the blocking invocations to MailChimp.
Configuring the message formatters and builders
...