#wellthen ๐ช๐บ
1 messages ยท Page 1 of 1 (latest)
Hi there!
For questions about pricing, you should ask Stripe support directly: https://support.stripe.com/contact
Okay. How would I go about enabling EPS payment method?
It returns this: "(Status 400) (Request req_FLcAQEDtu7T8GA) The payment method eps cannot be used with the manual payment intent capture method. - The payment method eps cannot be used with the manual payment intent capture method. - 38 - "
Does this mean that I can't manually capture funds with EPS?
Correct. As mentioned here https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-capture_method
manual
Place a hold on the funds when the customer authorizes the payment, but donโt capture the funds until later. (Not all payment methods support this.)
Thanks. Is it possible to send a receipt directly from Stripe, as the client enters an email address?
Or do I have to fetch the receipt url manually and send it to them
There is a dashboard setting for this: https://dashboard.stripe.com/settings/emails
Thanks. Testing it now.
Note that you cannot test this in test mode, since Stripe doesn't send any email in test mode.
ah, would it send the receipt as a pdf or url?
also, is google pay and apple pay only available for mobile? I added google_pay and apple_pay as payment methods
but they return (Status 400) (Request req_slQMpBK8WIj0DJ) Invalid payment_method_types[2]
ah, would it send the receipt as a pdf or url?
When looking at a PaymentIntent in the dashbaord, there is a "send receipt" button. This is a good way to see how the email will look like.
also, is google pay and apple pay only available for mobile? I added google_pay and apple_pay as payment methods
There's no such think asgoogle_payorapple_payfor PaymentMethod. When you setcardit this automatically includes Apple/Google Pay.
Yes it works in test mode. Google Pay should appear in Chrome browser, and Apple Pay in Safari browser. But note that you need a card in your wallet for it to work.
Thanks. One more question, how can I enable Link or is it enabled by default?
Why do you want to force 3DS?
But yes there are some options, like Radar https://stripe.com/docs/payments/3d-secure#three-ds-radar or with the API https://stripe.com/docs/payments/3d-secure#manual-three-ds
I believe if a client pays via 3DS and maliciously chargebacks, it's a smaller chance that the payment processor sides with them?
Correct, this is called liability shift: https://stripe.com/docs/payments/3d-secure#disputed-payments
Will Stripe automatically trigger 3DS in "risky" payments even though I don't use Radar?
3DS is frequently requested by the bank themselves, so yes you can see 3DS event if you don't use Radar.
thanks!