WalletInc 2.49.0

dotnet add package WalletInc --version 2.49.0
                    
NuGet\Install-Package WalletInc -Version 2.49.0
                    
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="WalletInc" Version="2.49.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WalletInc" Version="2.49.0" />
                    
Directory.Packages.props
<PackageReference Include="WalletInc" />
                    
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 WalletInc --version 2.49.0
                    
#r "nuget: WalletInc, 2.49.0"
                    
#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 WalletInc@2.49.0
                    
#: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=WalletInc&version=2.49.0
                    
Install as a Cake Addin
#tool nuget:?package=WalletInc&version=2.49.0
                    
Install as a Cake Tool

Wallet Inc

Wallet SDK for .NET

NuGet version NuGet downloads

The official server-side .NET SDK for the Wallet Inc CRM & Digital Payments platform. Create and manage membership tiers, club members, vouchers, promotions, store credit, payment designs, Apple & Google Wallet passes, SMS/MMS, and more.

Access note: this library is currently restricted to Wallet Inc customers. Need access or a hand getting started? Join us on Discord.

Requirements

.NET 8.0 or later.

Installation

dotnet add package WalletInc

Or via the Package Manager Console:

Install-Package WalletInc

Quickstart

Point the client at the API host and send your API key as the access-token header on every request. Create your key in the Wallet Developer Hub.

using WalletInc.Api;
using WalletInc.Client;
using WalletInc.Model;

var config = new Configuration
{
    BasePath = "https://api.wall.et"
};
// Send your API key as the access-token header on every request.
config.DefaultHeaders.Add("access-token", "YOUR_API_KEY");

var membershipTiers = new MembershipTiersApi(new HttpClient(), config, new HttpClientHandler());

var tier = membershipTiers.CreateMembershipTier(
    new WTMembershipTierCreationParams(tierNumber: "1", tierName: "GOLD", tierDiscount: 20f)
);

Console.WriteLine(tier);

Documentation

Full API reference and guides live in the Wallet Developer Hub. Per-endpoint method docs and model definitions for this client are generated into the docs/ folder of this repository.

About Wallet Inc

Wallet Inc is a CRM and digital payments platform: digital membership cards, loyalty and rewards, vouchers and store credit, Apple & Google Wallet passes, and SMS/MMS marketing. Learn more at wallet.inc and explore the APIs at the Wallet Developer Hub.

License

Proprietary. Use of this SDK is governed by the Wallet Inc terms at wallet.law.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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
2.49.0 31 9/18/2026
2.48.0 35 9/17/2026
2.47.4 73 9/15/2026
2.47.3 88 9/14/2026
2.47.2 103 9/12/2026
2.47.1 105 9/12/2026
2.47.0 86 9/11/2026
2.46.1 89 9/11/2026
2.46.0 99 9/7/2026
2.45.0 112 9/2/2026
2.44.1 93 9/1/2026
2.44.0 100 9/1/2026
2.43.0 99 8/30/2026
2.42.0 99 8/23/2026
2.41.0 96 8/23/2026
2.40.0 103 8/22/2026
2.39.0 98 8/22/2026
2.38.3 97 8/22/2026
2.38.2 101 8/22/2026
Loading failed