Batch Processing for E-commerce

Process hundreds of products efficiently

MeshMint TeamJanuary 20, 202510 minE-commerceIntermediate
BatchE-commerceAutomation

Batch Processing for E-commerce

Preparing Your Images

Before batch processing:

  1. Organize images in folders by category
  2. Use consistent naming convention
  3. Ensure similar lighting/background
  4. Optimize image sizes (2000-4000px)

Using Batch Upload

Steps:

  1. Click "Batch Processing" in dashboard
  2. Drag folder or select multiple files
  3. Choose universal settings for all
  4. Click "Process Batch"

API Integration

For automated workflows, use our API:

// Example API call
const response = await fetch('https://api.meshmint.io/batch', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    images: imageUrls,
    settings: {
      quality: 'standard',
      format: 'glb',
      optimize_for: 'ecommerce'
    }
  })
});

Processing Tips

  • Process in batches of 50-100 for best performance
  • Use webhooks for completion notifications
  • Implement retry logic for failed items
  • Schedule large batches during off-peak hours

Quality Control

After batch processing:

  1. Review generated models in preview
  2. Flag any that need manual adjustment
  3. Use bulk actions for common fixes
  4. Export all approved models at once