Add new customers to GetResponse, with Mechanic.

Mechanic is a development and ecommerce automation platform for Shopify. :)

Add new customers to GetResponse

Does what it says on the tin. :) Provide your GetResponse API key (found under the account menu, under "Integrations & API" and "API") and a list token (found in the settings for your list – look for 5-6 letters and numbers), and Mechanic will automatically send each new customer account (full name and email address) over to GetResponse.

Runs Occurs whenever a customer is created. Configuration includes getresponse api key and getresponse list token.

15-day free trial – unlimited tasks

Documentation

Does what it says on the tin. :) Provide your GetResponse API key (found under the account menu, under "Integrations & API" and "API") and a list token (found in the settings for your list – look for 5-6 letters and numbers), and Mechanic will automatically send each new customer account (full name and email address) over to GetResponse.

Developer details

Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Shopifolks, everybody.

That’s why we make it easy to configure automation without code, why we make it easy to tweak the underlying code once tasks are installed, and why we publish it all here for everyone to learn from.

(By the way, have you seen our documentation? Have you joined the Slack community?)

Open source
View on GitHub to contribute to this task
Subscriptions
shopify/customers/create
Tasks use subscriptions to sign up for specific kinds of events. Learn more
Options
getresponse api key (required), getresponse list token (required)
Code
{% capture customer_name %}{{ customer.first_name }} {{ customer.last_name }}{% endcapture %}

{
  "action": {
    "type": "http",
    "options": {
      "method": "post",
      "url": "https://api.getresponse.com/v3/contacts",
      "headers": {
        "X-Auth-Token": "api-key {{ options.getresponse_api_key__required }}"
      },
      "body": {
        "name": {{ customer_name | json }},
        "email": {{ customer.email | json }},
        "campaign": {
          "campaignId": {{ options.getresponse_list_token__required | json }}
        },
        "tags": [],
        "customFieldValues": []
      }
    }
  }
}
Task code is written in Mechanic Liquid, an extension of open-source Liquid enhanced for automation. Learn more