magesource / customerimport
Magesource Customer Import for Magento 2.
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:magento2-module
pkg:composer/magesource/customerimport
This package is auto-updated.
Last update: 2025-11-19 15:37:02 UTC
README
Import Customer with command in csv or json files
Installation
-
Install the module composer by running
composer require magesource/customerimport:dev-main -
Enable the module by running
php bin/magento module:enable Magesource_CustomerImport -
Run Magento commands by running
php bin/magento set:up;php bin/magento s:d:c;php bin/magento s:s:d -f;php bin/magento c:f
Features
Create customers from csv or json file from command line terminal.
Configurations
bin/magento customer:import <profile-name> <source>
So to import from the CSV and the JSON respectively the user would execute either one of the following
profile-name is 'customer-csv' or 'customer-json'
source is your file path name added in var/import folder (eg. 'customer.csv' or 'customer.json')
-
php bin/magento customer:import --help -
Description: Customer Import via CSV & JSON
-
Usage: customer:import
-
Arguments: profile Profile name ex: customer-csv or customer-json source Source Path ex: customer.csv or customer.json
bin/magento customer:import customer-csv customer.csv
bin/magento customer:import customer-json customer.json
Once we run our customer import command,also need to make sure to re-index the Customer Grid indexer
`php bin/magento indexer:reindex customer_grid`