Soenneker.Stripe.SetupIntents 4.0.430

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

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Stripe.SetupIntents

Create, confirm, retrieve, update, cancel, and list Stripe setup intents for saving payment methods for later use.

Installation

dotnet add package Soenneker.Stripe.SetupIntents

Configuration

{
  "Stripe": {
    "SecretKey": "sk_test_..."
  }
}

Usage

using Soenneker.Stripe.SetupIntents.Abstract;
using Soenneker.Stripe.SetupIntents.Registrars;
using Stripe;

services.AddStripeSetupIntentsUtilAsScoped();

SetupIntent setupIntent = await setupIntentsUtil.CreateAndConfirmForOffSessionCard(
    customerId: "cus_...",
    paymentMethodId: "pm_...",
    returnUrl: "https://example.com/billing/setup-complete",
    idempotencyKey: $"save-payment-method-{customerId}",
    cancellationToken: cancellationToken);

Create defaults to off-session usage and enables automatic payment methods. CreateAndConfirmForOffSessionCard assumes the supplied payment-method ID represents a card; Stripe validates the actual method and may require customer action through the return URL.

List returns at most the first 100 setup intents for a customer. Create, confirm, update, and cancel calls change Stripe state, and Stripe API errors propagate to the caller.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on Soenneker.Stripe.SetupIntents:

Package Downloads
Soenneker.Stripe.Suite

Bundle and register Soenneker's Stripe customer, payment, invoice-item, and subscription libraries.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.430 0 9/4/2026
4.0.429 0 9/4/2026
4.0.428 0 9/4/2026
4.0.427 80 9/2/2026
4.0.426 125 9/1/2026
4.0.425 93 9/1/2026
4.0.424 101 8/31/2026
4.0.423 103 8/31/2026
4.0.422 128 8/31/2026
4.0.421 83 8/31/2026
4.0.420 77 8/31/2026
4.0.419 124 8/31/2026
4.0.418 88 8/30/2026
4.0.417 85 8/30/2026
4.0.416 157 8/30/2026
4.0.415 81 8/30/2026
4.0.414 83 8/30/2026
4.0.413 74 8/30/2026
4.0.412 181 8/29/2026
4.0.411 153 8/27/2026
Loading failed

Update dependency Soenneker.Stripe.Client to 4.0.1472 (#962)