#Shmarti-PI and Charges
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
could you please share the request id for this? here's how you can find one https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_t0AGwVNHh2eio2
you're using both confirm: true and capture: manual in the same Payment Intent
these two parameters don't work together
ahh, how should I do it?
confirm: true means that the PI will be confirmed (meaning getting paid) and capture manual means that you want it to be capture at a later stage after collecting the payment info
so it really depends on what you're trying to achieve
ah basically "authorize" the charge, capture later
My mind is still tuned to the old API. I last used stripe in 2017
then you just need to remove the confirm: true
ok and when its time to capture, I use confirm = true?
you'd have to use the capture method
Right I do have that. Thank you @little wing really appreciate it ๐
let me know if you need any more help