Mechanic is a development and ecommerce automation platform for Shopify. :)
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.
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.
Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Gurus, 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.
{% 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": [] } } } }