#nina_paymentintnet-future

1 messages ¡ Page 1 of 1 (latest)

drifting sequoiaBOT
#

👋 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.

versed rain
#

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.

candid haven
#

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?

versed rain
#

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

candid haven
#

Oh! So how would I set up a payment intent that's not automatically connfirmed? We're currently using confirmation_method = automatic

versed rain
#

A PaymentIntent is never automatically confirmed. You/your integration controls the confirmation by calling the Confirm PaymentIntent API or passing confirm: true on creation.

candid haven
#

Ah yes, I see!

#

Okay, I think I've got enough info to make some changes, thank you