You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Server-side SDK for license-management.com - A license management platform for software vendors.
Features
License Management - Create, retrieve, and update licenses
Receipt Management - Manage purchase records and subscriptions
Computer Tracking - Register and track end-user devices
Product Management - Create and manage software products
Webhook Support - Full webhook lifecycle management with signature validation
Multi-Framework - Supports .NET Standard 2.0, .NET 6.0, and .NET 8.0
Installation
dotnet add package LicenseManagement.Client
Quick Start
Basic Setup
usingLicenseManagement.Client;usingMicrosoft.Extensions.DependencyInjection;// Register the client in your DI containerservices.AddLicenseManagementClient(options =>{options.ApiKey="MST_01ARZ3...";// Your master API keyoptions.BaseUrl="https://license-management.com/api";});