#charlie-fanbase_best-practices
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/1408423385528139860
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hey! once we pass the payment intent to the reader, we need to know whether the payment has been succesful
or has failed
got it. yes to be notified that a payment succeeded/failed, then you should use webhook events.
you can find all events related to PaymentIntent here: https://docs.stripe.com/api/events/types#event_types-payment_intent.amount_capturable_updated
Ok is there a seperate webhook for terminal payments? We currently use checkout succeeded and invoice paid webhooks, if we turn on payment intents then this will fire for all our existing payments
the most important ones are payment_intent.succeeded and payment_intent.payment_failed.
Ok is there a seperate webhook for terminal payments?
there are these events sent for Terminal: https://docs.stripe.com/api/events/types#event_types-terminal.reader.action_failed
butpayment_intent.succeededandpayment_intent.payment_failedare the most important ones
Ok cool, thanks. Also can terminals support remote payments? i.e. over the phone and manually typing in card details?
Docs refer to in-person payments but couldn't find anywhere explicitly saying it is not supported
we do support this. you can learn about it here: https://docs.stripe.com/terminal/features/mail-telephone-orders/payments
however it's a "Private preview" feature, meaning you'll need to contatc Stripe support to see if you are alligible for that feature or not.