Soenneker.Stripe.SetupIntents
4.0.421
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Stripe.SetupIntents --version 4.0.421
NuGet\Install-Package Soenneker.Stripe.SetupIntents -Version 4.0.421
<PackageReference Include="Soenneker.Stripe.SetupIntents" Version="4.0.421" />
<PackageVersion Include="Soenneker.Stripe.SetupIntents" Version="4.0.421" />
<PackageReference Include="Soenneker.Stripe.SetupIntents" />
paket add Soenneker.Stripe.SetupIntents --version 4.0.421
#r "nuget: Soenneker.Stripe.SetupIntents, 4.0.421"
#:package Soenneker.Stripe.SetupIntents@4.0.421
#addin nuget:?package=Soenneker.Stripe.SetupIntents&version=4.0.421
#tool nuget:?package=Soenneker.Stripe.SetupIntents&version=4.0.421
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.1461)
- Soenneker.Stripe.Enums.SetupIntentUsage (>= 4.0.48)
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.429 | 0 | 9/4/2026 |
| 4.0.428 | 0 | 9/4/2026 |
| 4.0.427 | 75 | 9/2/2026 |
| 4.0.426 | 120 | 9/1/2026 |
| 4.0.425 | 90 | 9/1/2026 |
| 4.0.424 | 98 | 8/31/2026 |
| 4.0.423 | 101 | 8/31/2026 |
| 4.0.422 | 126 | 8/31/2026 |
| 4.0.421 | 81 | 8/31/2026 |
| 4.0.420 | 76 | 8/31/2026 |
| 4.0.419 | 122 | 8/31/2026 |
| 4.0.418 | 88 | 8/30/2026 |
| 4.0.417 | 84 | 8/30/2026 |
| 4.0.416 | 155 | 8/30/2026 |
| 4.0.415 | 80 | 8/30/2026 |
| 4.0.414 | 80 | 8/30/2026 |
| 4.0.413 | 73 | 8/30/2026 |
| 4.0.412 | 180 | 8/29/2026 |
| 4.0.411 | 152 | 8/27/2026 |
| 4.0.410 | 102 | 8/26/2026 |
Update dependency Soenneker.Stripe.Client to 4.0.1461 (#949)