#mmv-paymentlink-dotnet
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- mmv, 3 days ago, 31 messages
mmv-paymentlink-dotnet
@naive gale https://github.com/stripe/stripe-dotnet/blob/master/src/Stripe.net/Services/PaymentLinks/PaymentLinkCreateOptions.cs#L155 this is the parameter you want right? What's not working?
On SessionCreateOptions there is the PaymentMethodOptions parameter required for bank transfers: PaymentMethodOptions = new SessionPaymentMethodOptionsOptions { CustomerBalance = new SessionPaymentMethodOptionsCustomerBalanceOptions { FundingType = "bank_transfer", BankTransfer = new SessionPaymentMethodOptionsCustomerBalanceBankTransferOptions { Type = "gb_bank_transfer" } }, },
I cannot find an equivalent parameter on PaymentLinkCreateOptions
Same situation for the Customer parameter
gotcha. You're misunderstanding something I think. PaymentLinks are reusable links for many different customers to order the same thing. They aren't used for one specific Customer. In that case you use Checkout
I tested anyways and customer balance/bank transfers do not work with PaymentLinks today. We haven't built this support yet
Ah right. I was lead to believe by the previous thread linked above, 3 days ago, that PaymentLinks support BankTransfers.
Perhaps I should describe again what I am trying to solve
I want to implement Bank Transfers (UK) using Stripe's awesome reconciliation features using that virtual bank account displayed on the checkout page, where the customer can send the money to
This works perfectly fine in testing
You can do it on Checkout. You can not do it via PaymentLinks, it doesn't work today
However, I don't want them to pay immediately. So I don't want to show those details on the checkout page. I only want to email them those virtual bank account details let's say tomorrow (when my supplier approve stock)
Do I have any way to achieve this?
Send them an email, have them come to _your website_where they can start paying and then you redirect them to Checkout
so a CheckoutSession can't be 'emailed'? As a link or similar
where they can just perform the last step
correct
ok, thank you
Sure thing! Make sure to reach out to our support team at https://support.stripe.com/contact to register your interest for this feature on PaymentLink!