Convert Squarespace Profiles to Shopify Customers in Google Sheets
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)
Go to Squarespace Dashboard → Contacts
Click the three-dot icon → Select Export all Contacts
Shopify Customers (Output)
This sheet formats the data to match Shopify's customer import CSV.
Shopify Dashboard → Customers → Import customers by CSV
The workflow can run on-demand or be triggered via webhook.
Via webhook Set up webhook node to expect a POST request 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
});
The data is processed into the Shopify Customers sheet.
Manually trigger Import Squarespace profiles into the sheet. 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 API credentials
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
Related Templates
Demo Workflow - How to use workflowStaticData()
This workflow demonstrates how to use the workflowStaticData() function to set any type of variable that will persist wi...
Bulk Automated Google Drive Files Sharing and Direct Download Link Generation
This N8N workflow automates the process of sharing files from Google Drive. It includes OAuth2 authentication, batch pro...
USDT And TRC20 Wallet Tracker API Workflow for n8n
Overview This n8n workflow is specifically designed to monitor USDT TRC20 transactions within a specified wallet. It u...
🔒 Please log in to import templates to n8n and favorite templates
Workflow Visualization
Loading...
Preparing workflow renderer
Comments (0)
Login to post comments