#matur - terminal
1 messages ยท Page 1 of 1 (latest)
๐ Hi there, Happy to help!
You refer to this link for a server-driven for terminal integration
https://stripe.com/docs/terminal/payments/collect-payment?terminal-sdk-platform=server-driven
I only want to type the amount into the reader and charge the payment?
You need to specify this on the backend when you create the PayementIntent not possible to do it into the reader directly
Ey! Thanks for your reply ๐ So if I need custom amounts all the time I must to develop a frontend with an input to type the amounts there, rigth? And then connect it has to be connected to a backend or a server-driven? I'm ok?
I'm not sure I understand your question
Oh sorry, I misread your Q
And with this amount connect to a backend to create the payment and finish the process.
yes you need to develop some sort of an interface
it's not possible to send the amount from the reader to the backend
So I have to develop an interface to type the amount there... rigth?
yes
and then connect to a backend to create the payment, etc...
yes
but if you're already developing a client-side app you can use this implementation https://stripe.com/docs/terminal/payments/collect-payment?terminal-sdk-platform=js
instead of the server-driven
both of these will need a server to create the PaymentIntent
I have a checkout in reactjs and a backend with the endpoint to connect with Stripe.
But now I want to use the Terminal on my local
physical local*
you will have to build on top of your front-end and backend
using the instructions I sent in the URL I shared above