#nina_paymentintnet-future
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.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ 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/1305574737312747571
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
nina_paymentintnet-future
@candid haven that's not something we support directly today. You would control when to attempt to pay the PaymentIntent in that case by calling the Confirm PaymentIntent in 10 days, for example with a cron job.
In that case, should the payment intent be set up with confirmation_method = manual
Also, would confirming the payment intent trigger the email notification to the customer and collect 3 days later? Or would the email be sent when the payment intent is created?
should the payment intent be set up with confirmation_method = manual
no, that's for something else, you can safely ignore this is doesn't apply today
Also, would confirming the payment intent trigger the email notification to the customer and collect 3 days later? Or would the email be sent when the payment intent is created?
yes the email would be sent on confirmation, not on creation
Oh! So how would I set up a payment intent that's not automatically connfirmed? We're currently using confirmation_method = automatic
A PaymentIntent is never automatically confirmed. You/your integration controls the confirmation by calling the Confirm PaymentIntent API or passing confirm: true on creation.