#richard_62179
1 messages ยท Page 1 of 1 (latest)
Hello ๐
I am using stripe.checkout.sessions.create and I provide a customer and have all customer_update set to never. Still, the url for doing the checkout first leads to a Stripe page that asks for the user's name and only then proceeds to PayPal. This should not be necessary, since I already provided the name to the API. What am I doing wrong?
Can you share the screenshot of the UI you're looking at?
We are migrating from a different provider. With this provider, we were already using Paypal Reference Transactions (https://developer.paypal.com/docs/checkout/advanced/customize/reference-transactions/) for charging recurring payments. If possible, I would like to import them to Stripe, so I can initiate future PayPal charges via the Stripe API. Is this possible somehow?
Not something I know off the top of my head, let me check
You might need to talk to our support team
Checking though
yeah I don't see a way to import the recurring payments publicly
I would suggest you reach out to our support about that, they can confirm if there's some internal way this can be done
https://support.stripe.com/?contact=true
This is the page that asks for the name.
I am already talking to your German support, but they are having a really hard time to understand what I am talking about... In their latest response they said that PayPal is responsible for the integration of PayPal and Stripe, which does not make any sense to me. I am pretty sure that it is you (Stripe) who are calling the PayPal API, not the other way around.
My understanding is that we only prefill email on checkout page, customers have the option to provide a different name when checking out (like when they're checking out on behalf of somebody else)
I don't believe you can prefill name
That's unfortunate. We are currently integrating PayPal via Mollie and with their system, users get immediately forwarded to PayPal. Having this intermediate step will just affect conversion negatively. And the name is not really used anyways... Not sure if we will switch our PayPal payments to Stripe in this case... ๐ค
You're currently using Stripe Checkout to integrate paypal, have you looked at the direct API integration docs?
https://stripe.com/docs/payments/paypal/accept-a-payment?platform=web&ui=API
Sounds like latter would fit your usecase better
Riiiight, that's a really good suggestion. For PayPal it should be possible to skip the Checkout Session and immediately create a PaymentIntent. I'll give it a try. Thanks!