UmbCheckout Documentation
Buy a LicenseUmbraco HostingUmbraco Development
  • 🛒UmbCheckout Documentation
  • 📔Getting Started
    • Overview
    • License Comparison
    • Installation
    • Configuration
    • Starter Kits
      • Stripe
        • Installation
    • Anonymous Telemetry
    • Developer License
    • Affiliate Scheme
    • Buy a License
  • 🛠️Configuration
    • Configuration Options
    • Product Variants
  • 🛒Core Services
    • Session Service
    • Database Service
    • Basket Service
    • Object Reference
      • Basket
      • Customer
      • UmbCheckoutMetaData
      • UmbCheckoutSession
      • LineItem
      • UmbCheckoutConfiguration
      • MultiUrlPicker
    • Cookies
    • Addons
      • Database Service
    • Property Editors
      • MetaData Property Editor
  • 🆘Support
    • Issue Tracker
    • Milestones
    • Roadmap
    • Support Tickets
  • 💰Payment Providers
    • Payment Providers
      • Stripe
        • Installation
        • Configuration
        • Payment Flow / Lifecycle
        • Stripe Email Notifications
        • Payment Methods
        • Receipts
        • Shipping Rates
        • Services
          • Stripe Shipping Rate ApiService
          • Stripe Shipping Rate Database Service
          • Stripe Session Service
          • Stripe Basket Controller
          • Stripe Webhook Api
            • How to test the Stripe Webhook on localhost
        • Notification Handlers
          • StripeResponseNotificationHandler
        • Notifications
          • OnCheckoutSessionCompletedNotification
          • OnCheckoutSessionExpiredNotification
          • OnPaymentFailedNotification
          • OnChargeFailedNotification
          • OnPaymentIntentSucceededNotification
          • OnPaymentIntentPaymentFailedNotification
          • OnPaymentIntentCreatedNotification
          • OnPaymentIntentCancelledNotification
          • OnChargeSucceededNotification
          • OnShippingRateSavedNotification
          • OnShippingRateDeletedNotification
          • OnPaymentSuccessNotification
        • Webhooks
          • OnChargeFailedWebhook
          • OnChargeSucceededWebhook
          • OnCheckoutSessionCompletedWebhook
          • OnCheckoutSessionExpiredWebhook
          • OnPaymentFailedWebhook
          • OnPaymentIntentCancelledWebhook
          • OnPaymentIntentCreatedWebhook
          • OnPaymentIntentPaymentFailedWebhook
          • OnPaymentIntentSucceededWebhook
          • OnPaymentSuccessWebhook
          • OnShippingRateDeletedWebhook
          • OnShippingRateSavedWebhook
        • Object Reference
          • TaxRate
          • Property
          • Validation
          • Config
          • TaxRateResponse
          • ShippingRateResponse
          • ShippingRate
        • uSync
          • Installation
          • Synchronising Changes
        • Addons
          • Tax Rates
          • Services
            • Stripe Tax Rate ApiService
            • Stripe Tax Rate Database Service
          • Notifications
            • OnStripeTaxRateSavedNotification
            • OnStripeTaxRateDeletedNotification
          • Webhooks
            • OnStripeTaxRateDeletedWebhook
            • OnStripeTaxRateSavedWebhook
          • Property Editors
            • Tax Rates Property Editor
          • uSync
            • Installation
            • Synchronising Changes
        • View Components
          • Basket View Component
          • Add to Basket Button View Component
        • Umbraco Forms Workflow
      • PayPal
      • Klarna
      • Apple Pay
      • Google Pay
      • Bacs Direct Debit / SEPA Direct Debit
  • ⏳Scheduled Tasks & Notifications
    • Remove Expired Baskets From Database
    • Basket Notifications
      • OnBasketAddedNotification
      • OnBasketAddedManyNotification
      • OnBasketAddManyStartedNotification
      • OnBasketAddStartedNotification
      • OnBasketClearedNotification
      • OnBasketClearStartedNotification
      • OnBasketReducedNotification
      • OnBasketReduceStartedNotification
      • OnBasketRemovedManyNotification
      • OnBasketRemovedNotification
      • OnBasketRemoveManyStartedNotification
      • OnBasketRemoveStartedNotification
    • Session Notifications
      • OnSessionClearedNotification
      • OnSessionClearStartedNotification
      • OnSessionCreatedNotification
      • OnSessionCreateStartedNotification
      • OnSessionGetNotification
      • OnSessionGetStartedNotification
      • OnSessionUpdatedNotification
      • OnSessionUpdateStartedNotification
    • Payment Provider Notifications
      • OnProviderClearSessionStartedNotification
      • OnProviderCreateSessionStartedNotification
      • OnProviderGetSessionNotification
      • OnProviderGetSessionStartedNotification
      • OnProviderSessionClearedNotification
      • OnProviderSessionCreatedNotification
    • Configuration Notifications
      • OnConfigurationSavedNotification
  • 🔌Extensions
    • Convert Extensions
    • CultureInfo Extensions
    • Decimal Extensions
  • 👨‍💻View Components
    • Basket Link View Component
  • 🔁Synchronising
    • uSync
      • Installation
      • Synchronising Changes
  • ✉️Umbraco Forms
    • Workflow
  • 🏗️Source Code Repositories
    • UmbCheckout
    • UmbCheckout.Stripe
    • UmbCheckout.uSync
    • UmbCheckout.Stripe.uSync
    • UmbCheckout.Stripe.Forms
Powered by GitBook
On this page
  • Upgrades
  • Installing a License
Edit on GitHub
  1. Getting Started

Installation

Installing UmbCheckout

UmbCheckout is installed using the NuGet package manager using the below command:

dotnet add package UmbCheckout

Next, you need to enable .NET sessions, if not already enabled. To do this add the app.UseSession(); line to your startup.cs before app.UseUmbraco() It should look similar to the below:

public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
    if (env.IsDevelopment())
    {
        app.UseDeveloperExceptionPage();
    }

    app.UseSession();

    app.UseUmbraco()
        .WithMiddleware(u =>
        {
            u.UseBackOffice();
            u.UseWebsite();
        })
        .WithEndpoints(u =>
        {
            u.UseInstallerEndpoints();
            u.UseBackOfficeEndpoints();
            u.UseWebsiteEndpoints();
        });
}

Alternatively, you can install using the NuGet package manager GUI within Visual Studio.

Upgrades

UmbCheckout uses Umbraco Migrations to install all of the tables required to function, this means that upgrades follow the same process as installation, you can either run the command found above or upgrade using the NuGet package manager GUI.

Installing a License

If you have purchased a license to enable more features, you simply need to add the following to your appsettings.json file:

  "UmbCheckout": {
    "LicenseKey": "YOUR LICENSE KEY HERE"
  }
"Umbraco": {
  "CMS": {
    "WebRouting": {
      "UmbracoApplicationUrl": "http://www.mysite.com/"
    }
  }
}

When do I need a license?

UmbCheckout requires a license to use any of the Addon packages.

Using UmbCheckout without a license will disable the Tax Rates and disables being able to store the Basket in a Cookie or the Database.

Licensed sites will also be able to make use of the support ticketing system.

(These restrictions may change in the future)

PreviousLicense ComparisonNextConfiguration

Last updated 1 year ago

You will also need to install a .

Replacing YOUR LICENSE KEY HERE with the key found in your .

You are also required to configure the within the within your appsettings.json file

If you require a development license, .

📔
payment provider
account here
UmbracoApplicationUrl
Web routing settings
please see this linked page