#forthepowersthatb
1 messages · Page 1 of 1 (latest)
Hi there
hihi
Are you asking if Stripe handles PCI Compliance for you?
yes
ok sweet. what api endpoint do i send too?
Do you know which integration you want to use?
We talk about the different options here: https://stripe.com/docs/payments/online-payments
will this send to stripe? js const { error } = await stripe.confirmPayment({ elements, confirmParams: { // Make sure to change this to your payment completion page return_url: "http://localhost:3000", }, });
React
You mostly want to decide whether you want to use Stripe Checkout (our hosted payment page) or Stripe Elements (allows you to build a custom form). Then you follow our integration guide: https://stripe.com/docs/payments/accept-a-payment
You can also see some basic code examples in our quickstart: https://stripe.com/docs/payments/quickstart
ya im using react elements. i just want to know how i send the payment
like this? js const { error } = await stripe.confirmPayment({ elements, confirmParams: { // Make sure to change this to your payment completion page return_url: "http://localhost:3000", }, });
stripe.confirmPayment sends payment info?