#ff_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question. Thank you for your patience!
âąď¸ We automatically close idle threads, which makes them read-only. Make sure you stick around to chat in realtime! If this thread is closed and you have another question you'll need to start a new thread.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1213032047329681449
đ Have more to share? You can add more detail below, including code, screenshots, videos, etc.
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.
- ff_webflow-installments, 20 hours ago, 4 messages
For a preoorder campaign, we intend to create a payment link without charging the client right away but only when the production of the service will be confirmed.
hello! I believe what you want is to use capture_method=manual when creating the Payment Link : https://docs.stripe.com/api/payment_links/payment_links/create#create_payment_link-payment_intent_data-capture_method
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Subsequently, you can capture the funds later : https://docs.stripe.com/payments/place-a-hold-on-a-payment-method#capture-funds
however, you'll want to note that you can only hold funds for 7 days
HI , i'm not sure this is the right option. Indeed, the preorder campaign will last 45 days. Some time ago, one of your colleague suggested this option https://docs.stripe.com/payments/save-and-reuse?platform=web&ui=checkout but i can't find where to edit the code for the payment link
that's just to save the PaymentMethod for future use. You can't place a hold on the saved PaymentMethod, but what you can do instead is to attempt to charge, and then provide your customers some time to make payment if the first attempt fails.
it's not possible to save a PaymentMethod using Payment Links, you'll want to use Checkout Sessions with mode=setup instead
you can take a look at this quickstart guide for reference : https://stripe.com/docs/checkout/quickstart, note though that it's for mode=payment, so you'll need to modify it to use mode=setup
I'll have a look thanks ! Any recommendation for someone to help me setting up this,