Skip to main content

πŸ“₯ Import Products

If you have an existing product catalogβ€”from an e-commerce platform, spreadsheet, or POS systemβ€”you can import everything at once. This is especially useful when setting up your account or migrating from another system.

Navigate to Service Management > Products and click Import Products.


πŸ“€ Import Modal​

Click Import Products from the Product Management dashboard to open the import modal.

πŸ“ Supported Formats​

#FormatExtensionDescription
1πŸ“Š CSV.csvComma-separated values file
2πŸ“— Excel.xlsxMicrosoft Excel spreadsheet
3πŸ“‹ JSON.jsonJavaScript Object Notation file

πŸ“ File Structure Guide​

Your import file must include the required columns. Below are examples for each format.

πŸ“Š CSV Example​

category,name,sku,price,stock,description
Accessories,Braided USB-C Cable,SKU-003,19.99,500,6ft premium cable
Accessories,Wireless Charger Pad,SKU-005,34.99,250,Fast charging compatible
Smartphones,Aura Phone Lite,SKU-001,449.99,150,Entry-level smartphone
Wearables,Fittrack V5,SKU-004,179.99,200,Fitness smartwatch

πŸ“— Excel Format​

ABCDEF
categorynameskupricestockdescription
AccessoriesBraided USB-C CableSKU-00319.995006ft premium cable
AccessoriesWireless Charger PadSKU-00534.99250Fast charging compatible
SmartphonesAura Phone LiteSKU-001449.99150Entry-level smartphone

πŸ“‹ JSON Example​

{
"products": [
{
"category": "Accessories",
"name": "Braided USB-C Cable",
"sku": "SKU-003",
"price": 19.99,
"stock": 500,
"description": "6ft premium cable"
},
{
"category": "Smartphones",
"name": "Aura Phone Lite",
"sku": "SKU-001",
"price": 449.99,
"stock": 150,
"description": "Entry-level smartphone"
}
]
}

πŸ“‹ Column Reference​

#ColumnRequiredTypeDescription
1categoryβœ… YesStringCategory name (must exist)
2nameβœ… YesStringProduct display name
3skuβœ… YesStringUnique product identifier
4priceβœ… YesNumberProduct price (decimal)
5stock❌ NoIntegerAvailable quantity
6description❌ NoStringProduct description
7brand❌ NoStringManufacturer name
8barcode❌ NoStringUPC/EAN barcode

βœ… Processing & Validation​

After uploading, the system validates your file:

#CheckDescription
1πŸ“ File FormatVerifies file type is CSV, XLSX, or JSON
2πŸ“‹ Required ColumnsChecks all required columns are present
3πŸ“¦ Product CountShows number of products ready to import
4🏷️ Category ValidationConfirms all referenced categories exist

πŸ”„ Import Process​

StepAction
1️⃣Upload your file via drag-and-drop or file browser
2️⃣System validates file format and structure
3️⃣Review validation results and product count
4️⃣Click Import Products to complete the import
warning

Categories referenced in your import file must already exist. Create categories first in the Categories tab before importing products.

tip

Download a sample template from the import modal to ensure your file structure is correct before preparing your data.