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
<PackageReference Include="Soenneker.Stripe.SetupIntents" Version="4.0.430" />
<PackageVersion Include="Soenneker.Stripe.SetupIntents" Version="4.0.430" />
<PackageReference Include="Soenneker.Stripe.SetupIntents" />
paket add Soenneker.Stripe.SetupIntents --version 4.0.430
#r "nuget: Soenneker.Stripe.SetupIntents, 4.0.430"
#:package Soenneker.Stripe.SetupIntents@4.0.430
#addin nuget:?package=Soenneker.Stripe.SetupIntents&version=4.0.430
#tool nuget:?package=Soenneker.Stripe.SetupIntents&version=4.0.430
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 | Versions 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. |
-
net10.0
- Soenneker.Stripe.Client (>= 4.0.1472)
- Soenneker.Stripe.Enums.SetupIntentUsage (>= 4.0.49)
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 |
Update dependency Soenneker.Stripe.Client to 4.0.1472 (#962)