🀝 Convert Squarespace profiles to Shopify customers in Google Sheets

⚑ 355 views · 🀝 CRM & Sales Operations

Description

This workflow converts an exported CSV from Squarespace profiles into a Shopify-compatible format for customer import.

How It Works

Clone this Google Sheets template, which includes two sheets:

Squarespace Profiles (Input)

  1. Go to Squarespace Dashboard β†’ Contacts
  2. Click the three-dot icon β†’ Select Export all Contacts

Shopify Customers (Output)

The workflow can run on-demand or be triggered via webhook.

Via webhook

  1. Set up webhook node to expect a POST request
  2. Trigger the webhook using this code (psuedo) - replace {webhook-url} with the actual URL
    const formData = new FormData();
    formData.append('file', blob, 'profiles_export.csv'); // Add file to FormData

    fetch('{webhook-url}', { // Replace with your target URL
      method: 'POST',
      mode: 'no-cors',
      body: formData
    });
  1. The data is processed into the Shopify Customers sheet.

Manually trigger

  1. Import Squarespace profiles into the sheet.
  2. Run the workflow to convert and populate the Shopify Customers sheet.

Once workflow is done, export the Shopify to csv and import to Shopify customers

Requirements

To use this template, you need:

Google Sheets Setup

Use this sample Google Sheets template to get started quickly.

Who Is This For?

For anyone looking to automate Squarespace contact exports into a Shopify-compatible formatβ€”no more manual conversion!

Explore More Templates Check out my other n8n templates: πŸ‘‰ n8n.io/creators/bangank36

πŸ”— Nodes Used

Google Sheets, Webhook, Extract from File

πŸ“₯ Import

Download workflow.json and import into n8n: Workflow menu β†’ Import from File

πŸ“– Importing guide Β· πŸ”‘ Credential setup