#Gerben
1 messages · Page 1 of 1 (latest)
No, it's all integrated with php
I mean how are you gather the payment details?
Situation, our product generates a invoice (own, not stripe invoice). This needs to be paid by our customer. We create a customer in stripe with funding instructions.
We create a paymentIntent for the customer with their fundingInstructions for this Invoice.
Stripe is actually hidden, more or less white label
how are you collecting the payment details from the customer?
We have a connected account, and use destinationCharges, customer are in our application. We dont collect payment details from our customer. Because we provide them with the funding instruction we have gotten from stripe.
and for iDeal?
Should we collect paymentDetails for ideal? I suppose not right?
(Not doing it right now, not even sure if it's possible)
how else would you be able to charge?
Thats for direct debit, and for creating a mandate
I dont want that, i would go more like a situation where a PaymentIntent could be completed through a checkout session with ideal for instance
Pay "on the fly"
Process now is:
Customer receives invoices -> PaymentIntent with bank_transfer created.
They login in our application and see a "Pay now" button. I create a checkout session with ideal as payment method.
They succesfully pay, and i manually cancel the initial PaymentIntent with bank_transfer option.
I they payment failed i keep the PaymentIntent with bank_transfer open.
Hi, I am taking over my colleague.