Soenneker.Stripe.SetupIntents
4.0.460
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Stripe.SetupIntents --version 4.0.460
NuGet\Install-Package Soenneker.Stripe.SetupIntents -Version 4.0.460
<PackageReference Include="Soenneker.Stripe.SetupIntents" Version="4.0.460" />
<PackageVersion Include="Soenneker.Stripe.SetupIntents" Version="4.0.460" />
<PackageReference Include="Soenneker.Stripe.SetupIntents" />
paket add Soenneker.Stripe.SetupIntents --version 4.0.460
#r "nuget: Soenneker.Stripe.SetupIntents, 4.0.460"
#:package Soenneker.Stripe.SetupIntents@4.0.460
#addin nuget:?package=Soenneker.Stripe.SetupIntents&version=4.0.460
#tool nuget:?package=Soenneker.Stripe.SetupIntents&version=4.0.460
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.1504)
- Soenneker.Stripe.Enums.SetupIntentUsage (>= 4.0.55)
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.462 | 53 | 9/17/2026 |
| 4.0.461 | 66 | 9/16/2026 |
| 4.0.460 | 58 | 9/16/2026 |
| 4.0.459 | 52 | 9/16/2026 |
| 4.0.458 | 83 | 9/16/2026 |
| 4.0.457 | 67 | 9/15/2026 |
| 4.0.456 | 96 | 9/15/2026 |
| 4.0.454 | 134 | 9/14/2026 |
| 4.0.453 | 109 | 9/13/2026 |
| 4.0.452 | 99 | 9/13/2026 |
| 4.0.451 | 113 | 9/13/2026 |
| 4.0.450 | 99 | 9/13/2026 |
| 4.0.449 | 126 | 9/12/2026 |
| 4.0.448 | 104 | 9/12/2026 |
| 4.0.446 | 114 | 9/12/2026 |
| 4.0.445 | 131 | 9/10/2026 |
| 4.0.444 | 169 | 9/9/2026 |
| 4.0.443 | 133 | 9/9/2026 |
| 4.0.442 | 131 | 9/8/2026 |
| 4.0.441 | 159 | 9/8/2026 |
Update dependency Soenneker.Stripe.Client to 4.0.1504 (#1011)