Soenneker.Stripe.SetupIntents 4.0.469

Prefix Reserved
dotnet add package Soenneker.Stripe.SetupIntents --version 4.0.469
                    
NuGet\Install-Package Soenneker.Stripe.SetupIntents -Version 4.0.469
                    
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.469" />
                    
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.469" />
                    
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.469
                    
#r "nuget: Soenneker.Stripe.SetupIntents, 4.0.469"
                    
#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.469
                    
#: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.469
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Stripe.SetupIntents&version=4.0.469
                    
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.469 49 9/26/2026
4.0.468 46 9/25/2026
4.0.467 34 9/25/2026
4.0.466 51 9/25/2026
4.0.465 33 9/25/2026
4.0.464 44 9/24/2026
4.0.463 33 9/24/2026
4.0.462 273 9/17/2026
4.0.461 130 9/16/2026
4.0.460 116 9/16/2026
4.0.459 88 9/16/2026
4.0.458 127 9/16/2026
4.0.457 90 9/15/2026
4.0.456 133 9/15/2026
4.0.454 144 9/14/2026
4.0.453 121 9/13/2026
4.0.452 108 9/13/2026
4.0.451 121 9/13/2026
4.0.450 106 9/13/2026
4.0.449 133 9/12/2026
Loading failed

Updated Soenneker.Stripe.Client to 4.0.1514