#peepee man-checkout-redirect
1 messages · Page 1 of 1 (latest)
there is not much documentation on the aftercompletion option
Hello! Can you clarify what you're trying to do? Are you trying to trigger some specific kind of logic on your end after the customer has been successfully redirected?
after the payment success on the payment link
i want to redirect them to another page
Gotcha - and you're creating Payment Links through the API right?
yes
You'd have to create a new PaymentLinkAfterCompletion object (https://github.com/stripe/stripe-dotnet/blob/95ded3e9/src/Stripe.net/Entities/PaymentLinks/PaymentLinkAfterCompletion.cs) and set that as part of the PaymentLinkCreateOptions options you are passing into the payment link creation request
Stripe.net is a sync/async .NET 4.6.1+ client, and a portable class library for stripe.com. - stripe-dotnet/PaymentLinkAfterCompletion.cs at 95ded3e941f2106e3b5808b657d51e7704b59cc5 · stripe/stripe...