Skip to main content

Supplier Integrations

Suppliers provide the products that Logidav imports, manages, and fulfills. Each supplier has a dedicated bundle that handles catalog import, stock synchronization, and supplier-specific workflows like dropshipping or pallet management.

Supported Suppliers

SupplierBundleKey Function
BigbuyBigbuyBundleDropship product import and stock sync
VidaxlVidaxlBundleCatalog synchronization and product import
AsirGroupAsirGroupBundle + AsirGroupModeBundlePallet management, stock tracking, barcode scanning

Common Architecture

All supplier integrations follow a consistent pattern:

  • Dedicated bundle under src/ with its own API client, services, and commands
  • Import commands that pull product data and stock levels from the supplier
  • Normalization of supplier-specific formats into the Logidav product model
  • Stock synchronization to keep inventory levels current across all sales channels

:::tip Adding a new supplier Follow the existing bundle structure (e.g., BigbuyBundle) when adding a new supplier integration. Each bundle should contain its own API client, import commands, and data mapping logic. :::