#binod - iDEAL

1 messages ยท Page 1 of 1 (latest)

vale lion
#

Hello, what seems to be the problem?

silent heath
#

I had conv. earlier, stripe subscriptions don't support iDeal payment right?

vale lion
#

Unfortunately that is still the case

silent heath
#

is there any alternative or work around? my client really needs it.

#

??

vale lion
#

I'm looking

silent heath
#

okay

vale lion
#

The iDEAL payment method can currently only be used if the subscription is set to send_invoice instead of charge_automatically

silent heath
#

how does send_invoice work?

vale lion
#

It requires the customer's email address and it sends them an email with the invoice and link to provide payment information.

silent heath
#

okay, so they are redirected to stripe hosted payment page which is non-customizable right?

vale lion
#

Correct. The emails can be customized though.

silent heath
#

okay, is the email sent by stripe or send it from our side?

vale lion
silent heath
#

also, Does stripe sends email after successful payment?

vale lion
silent heath
#

I have enabled but not getting an email

#

const paymentIntent = await stripe.paymentIntents.create({ amount: payload.amount, currency: "eur", payment_method_types: ["card", "ideal"], });

vale lion
#

We do not send emails in Test mode

silent heath
#

For this particular payment, not subscription

vale lion
#

Is this a live mode charge?

silent heath
#

No, its test mode

vale lion
#

Then you won't receive an email

silent heath
#

can we customize the email>

vale lion
#

Please review the Email settings. You can also preview what the email will look like there.

silent heath
#

I need to make Nova Automotive B.V dynamic. Is it possible?

vale lion
#

The business name is not dynamic. This is controlled in the Account Settings

silent heath
#

So, it's impossible or possible in custom membership? right now we are using express membership

vale lion
#

So is this a Connect integration?

silent heath
#

not sure, what you mean?

vale lion
#

You said "custom membership". Stripe doesn't have memberships but we do have Stripe Connect with includes Custom and Express accounts.

silent heath
#

yes, we are using Express right now

thin grove
#

Hi ๐Ÿ‘‹ jumping in as my teammate needs to step away.

Since you're working with Express accounts, any hosted flows will default to leveraging the branding of your platform. The only approach I can think of that might alter that is leveraging on_behalf_of:
https://stripe.com/docs/api/invoices/update#update_invoice-on_behalf_of

But that would be tricky to do since the invoices you're using will be generated by a Subscription rather than you creating them directly.

This talks a little more about what happens if you use on_behlaf_of
https://stripe.com/docs/invoicing/connect#on-behalf-of

Create invoices for connected accounts and optionally take fees in the process.

silent heath
#

yeah, the invoices would be created by subscription automatically, I don't think it would be helpful

#

??

thin grove
#

Yeah, it would be quite tedious to set up a flow that would intercept each invoice for a subscription and adjust that parameter. Express and Custom accounts are intended for scenarios where your customers will interact primarily with your platform, and may not even be aware of the third-parties (the connected accounts) that are involved in the flow. This is why those accounts result in scenarios where your platform's branding is primarily used.

Standard accounts on the other hand, lend themselves to scenarios where your customers are interacting directly with your connected accounts. So when using these accounts, hosted flows inherit the branding settings from the connected accounts (including the name of the business that is displayed).

silent heath
#

In that case, it should be possible with Express & Custom account right?

#

im confused

thin grove
#

Let's take a step back, what is your overall goal here?

silent heath
#

I want to have an customizeable transaction email. i.e. business name in success checkout

#

When I purchase from ABC store, I should get an email saying You purchased from ABC

thin grove
#

We're not quite as familiar with the email functionality in this forum (we primarily focus on the API side of integrations) but I don't think that is possible for Express/Custom accounts. When using those types of accounts, your customers are essentially purchasing from you the platform, so the emails will contain your platform's name.

If you want your customers to feel like their interacting directly with your vendors, then Standard accounts sound like they'd be a better fit:
https://stripe.com/docs/connect/accounts#standard-accounts

silent heath
#

Does the standard account have all the customizable options?

thin grove
#

Can you elaborate?

silent heath
#

like business name in invoice_email, subscription_success_email, checkout_success_email

#

dynamic business name basically

thin grove
#

No, there is no scenario where you can dynamically provide a business name for each email generated. The emails pull business name from existing account information.

#

When working with Connect integrations, the business name is either pulled from the Platform account or from the Connected account.

silent heath
#

okay, thanks!

thin grove
#

Any time!

silent heath
#

will ideal payment be available in subscription as well in near future?

thin grove