Skip to content

Bulk Imports

You may want to import color and family records en masse from an existing catalog. This can be achieved through the bulk import interface.

CSV Templates

Below are links to download the templates with required fields:

Requirements

  • All CSVs must be ZIPed into a single .zip package.
  • DO NOT rename the files; use the existing names i.e. colors.csv and families.csv.
  • DO NOT delete the header row; CSV headers are required.
  • A valid name and slug are required for every record. Slugs must follow the string substitution pattern below:
js
"$SLUG_VALUE"
  .trim()
  .toLowerCase()
  .replace(/[^\w\s-]/g, "")
  .replace(/[\s_-]+/g, "-")
  .replace(/^-+|-+$/g, "")
  • Existing records will be updated.
  • Only one record will be created for duplicate entries.