MailChimp Responder setup guide - snowplow-archive/sauna GitHub Wiki

HOME > GUIDE FOR DEVOPS > SETTING UP SAUNA > RESPONDERS > MailChimp Responder setup guide

This responder has not yet been implemented. If you are interested in contributing this or sponsoring us to build this, please get in touch.

See also: MailChimp Responder user guide

Contents

Overview

This responder lets your users export data from your event warehouse and upload this data to MailChimp for use in email marketing.

Compatibility

This responder will be released in Sauna version TBC.

Sauna setup

JSON Schema

The MailChimp Responder must be configured using a self-describing JSON which validates against this JSON Schema:

iglu:com.snowplowanalytics.sauna.responders/mailchimp_config/jsonschema/1-0-0

You can get apiKey from your MailChimp account.

Example

We could enable this logger by running:

$ sauna --responders $conf/responders ...

where the directory $conf/responders contained a file:

$conf/responders/mailchimp_config.json

and that file contained the following self-describing JSON:

{
    "schema": "iglu:com.snowplowanalytics.sauna.responders/mailchimp_responder/jsonschema/1-0-0",

    "data": {
        "vendor": "com.snowplowanalytics",
        "name": "mailchimp_responder",
        "parameters": {
            "apiKey": "123456789101112-example"
        }
    }
}