#sarita_21302

1 messages · Page 1 of 1 (latest)

quick cobaltBOT
frozen heart
tepid light
#

And can I also get a copy of receipt?

frozen heart
tepid light
#

What if it's a guest customer payment?

frozen heart
tepid light
#

We don't want to collect email address before payment but after the payment, if they like to receive a receipt and provide an email address.

#

can the payment_intend be updated with the email adress and then trigger a receipt?

frozen heart
#

That's possible. Updating the receipt_email on Payment Intent will send the receipt

tepid light
#

Ok, thanks. I'll give it a try.

frozen heart
#

Please note that email is not sent in test mode and will only be sent in live mode

tepid light
#

Does the payment intend needs amount in the format 1000 for $10 ? Is there a helper function to convert 12.12 to 1212 Or do we need to handle it internally

frozen heart
#

Does the payment intend needs amount in the format 1000 for $10 ?
Stripe follows the smallest unit of a currency for the amount: https://stripe.com/docs/currencies

Depending on the currency, the format can be different. For example, the smallest unit of USD is cent. So the amount will be in cents, i.e. 1000 cents = 10 dollars

#

Is there a helper function to convert 12.12 to 1212 Or do we need to handle it internally
There is no helper function. Your system should handle it internally

tepid light
#

Cool

#

One more question - updating payment intend - will that require any kind of re-confirmation?

frozen heart
#

Depending on the fields being updated

#

If the payment has been made sucessfully, updating fields like receipt_email will not require re-confirmation

tepid light
#

Thanks