Installation

Getting started with the CSV importer.

First Steps First

Before you install the Flatirons Fuse importer, you will need to Create an Importer and add columns to it. The importer can be considered as your system's data schema. It represents the fields that a customer is allowed to import into your system, as well as affording the opportunity to implement numerous options, such as front-end validations, back-end validations, different data types, as well as custom branding.
To use the importer you will need two keys:
  1. 1.
    Your Organization's API key: You can find this at the top of the Importers page.
  2. 2.
    Your Importer's ID: You can find this in the table on the Importers page.

Installation

You can use Yarn, NPM, or a CDN to install the importer.
YARN
NPM
CDN
yarn add fuse-importer
To import the data importer, use:
import FuseImporter from "fuse-importer";
npm install fuse-importer --save
To import the importer, use:
import FuseImporter from "fuse-importer";
If you're not using a module bundler or package manager, Fuse is also hosted on the unpkg.com CDN.
Make sure to place the script tag before you initialize the importer.
<script type="text/javascript" src="https://unpkg.com/[email protected]"></script>