#Mathieu
1 messages ยท Page 1 of 1 (latest)
It's not possible unfortunately.
What's your use case?
Are you creating a Payment Link for each Customer?
Yes i want a payment link per customer. This payment link must be alive until the payment succeed
You can use Checkout Sessions instead: https://stripe.com/docs/payments/checkout/how-checkout-works
It is more powerful than Payment Links and designed to individual for each Customer.
๐ stepping in
Checkout Sessions expire 24 hours after creation or you can control expiry via https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-expires_at
Sorry, but if you don't know when the customers will be able to pay, you can give them the link to your site, that will then generate a Checkout Session URL to redirect them too. This way you're not bound to Checkout Session expiry time.
OK thanks for the advice ๐