SlimPim.SlimConnect 1.0.19

dotnet add package SlimPim.SlimConnect --version 1.0.19
                    
NuGet\Install-Package SlimPim.SlimConnect -Version 1.0.19
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SlimPim.SlimConnect" Version="1.0.19" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SlimPim.SlimConnect" Version="1.0.19" />
                    
Directory.Packages.props
<PackageReference Include="SlimPim.SlimConnect" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SlimPim.SlimConnect --version 1.0.19
                    
#r "nuget: SlimPim.SlimConnect, 1.0.19"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SlimPim.SlimConnect@1.0.19
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SlimPim.SlimConnect&version=1.0.19
                    
Install as a Cake Addin
#tool nuget:?package=SlimPim.SlimConnect&version=1.0.19
                    
Install as a Cake Tool

SlimPim SlimConnect for Umbraco

SlimConnect is an Umbraco package that integrates SlimPim (Product Information Management) with your Umbraco CMS website.

Features

Automatic Product Catalog Sync

  • Syncs categories, products, and variants from SlimPim to Umbraco content nodes
  • Maintains the full product hierarchy (Catalog > Categories > Products > Variants)
  • Supports multi-language/multi-culture content
  • Handles custom fields from your PIM templates

Media Management

  • Automatically downloads and syncs product images
  • Syncs product attachments (PDFs, documents, etc.)
  • Organizes media in a structured folder hierarchy

Backoffice Dashboard

  • Configure SlimPim API connection settings
  • View sync logs and status
  • Run manual sync on demand
  • Scheduled automatic sync (configurable interval)

Frontend Services

  • IProductCatalogService - Navigate the product catalog structure
  • IFieldService - Work with custom PIM fields and prices
  • Helper methods for menus, breadcrumbs, and variant relationships

Installation

dotnet add package SlimPim.SlimConnect

Configuration

  1. Install the package in your Umbraco project
  2. Navigate to Settings > SlimConnect in the Umbraco backoffice
  3. Enter your SlimPim API credentials:
    • API URL
    • Tenant ID
    • Client ID
    • Client Secret
  4. Configure sync interval (default: 60 minutes)
  5. Click "Run Sync Now" to perform initial sync

Document Types Created

The package automatically creates the following document types:

Document Type Description
slimConnectProductCatalog Root node for the product catalog
slimConnectCategory Product categories (supports nesting)
slimConnectProduct Product container (not buyable)
slimConnectVariant Purchasable product variant

Frontend Usage

@inject IProductCatalogService CatalogService

// Get categories for navigation
var categories = CatalogService.GetTopLevelCategories();

// Get products in a category
var products = CatalogService.GetProductsInCategory(category);

// Get variants for a product
var variants = CatalogService.GetVariants(product);

// Get the default variant (for product links)
var defaultVariant = CatalogService.GetDefaultVariant(product);

Work with Custom Fields

@inject IFieldService FieldService

// Get custom fields
var fields = FieldService.GetVariantFields(variant, culture);

// Get prices
var price = FieldService.GetVariantPrice(variant, "SEK", "sv-SE");
var formatted = price?.Format(); // "123,00 kr"

Requirements

  • Umbraco 14+ (v16 recommended)
  • .NET 9
  • SlimPim account with API access

Support

License

MIT License - see LICENSE for details.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.19 99 2/13/2026
1.0.18 106 2/9/2026
1.0.17 95 2/9/2026
1.0.16 90 2/9/2026
1.0.15 99 1/29/2026
1.0.14 113 1/26/2026
1.0.13 102 1/26/2026
1.0.12 107 1/26/2026
1.0.11 101 1/26/2026
1.0.10 102 1/26/2026
1.0.9 105 1/21/2026
1.0.8 90 1/20/2026
1.0.7 108 1/19/2026
1.0.6 155 1/8/2026
1.0.5 324 12/17/2025
1.0.4 293 12/17/2025
1.0.3 274 12/16/2025
1.0.0 440 12/10/2025