#kuklyy - ideal subscriptions

1 messages · Page 1 of 1 (latest)

severe minnow
#

kuklyy - ideal subscriptions

#

Sounds like you will need to use the other collection_method, namely send_invoice

#

If you retry with that, does the call work?

#

Also to be clear, as the name implies, with that setting we send your user an invoice for them to manually pay each month rather than charging them automatically

floral elk
#

yea, but i need to charge them automatically

#

give me a sec, i think i figure it out, i will back to you

#

can i somehow simulate a different region for test customer? Im from Poland and i can only see card and SEPA debit

#

im using paymant element

    const paymentElement = elements.create('payment');
    paymentElement.mount('#payment-element');
severe minnow
#

I think this is more based on the currency and your account's region. Is the payment in EUR and is your account's country

AU, CA, Europe, HK, JP, MX, NZ, SG, US

floral elk
#

I got EUR and Europe and still cant see ideal method

severe minnow
floral elk
#

yes

#

when i click preview i see ideal, but its not generated from stripe elements on my frontend

#

i found this in subscription object, can i provide different values there?

severe minnow
#

Is this for a subscription where you specified payment_method_types: ['ideal']?

floral elk
#

no, i removed this parameter

    const subscription = await stripe.subscriptions.create({
      customer: customerId,
      items: [{
        price: priceId,
      }],
      payment_behavior: 'default_incomplete',
      expand: ['latest_invoice.payment_intent'],
    });
silent fiber
#

Hi 👋 I'm stepping in for @severe minnow . Give me a second to get caught up

floral elk
#

i have to go now, please dont close the thread, let me know if you can help me with my problem

silent fiber
#

Threads will get archived after ~ 1 hour of inactivitty but you can always request they be re-opened

floral elk
#

how can i make a reopen request?

silent fiber
#

Just ask in the main thread

floral elk
#

ok, gnight

chilly pikeBOT
#

This thread has been archived. If you need help with anything else please ask in #dev-help or contact Stripe Support: https://support.stripe.com/contact

dark tulip
#

Hi @floral elk I've re-opened your thread

floral elk
#

hi, thank you. Can you help me with my problem with ideal payments?

dark tulip
#

sure, give me a sec to catch up the messages

#

OK, do you still get error in subscription creation API call?

floral elk
#

i can create a subscription with this payload

    const subscription = await stripe.subscriptions.create({
      customer: customerId,
      items: [{
        price: priceId,
      }],
      payment_behavior: 'default_incomplete',
      expand: ['latest_invoice.payment_intent'],
    });

i send back a client secret to the frontend but on payment elements shows only two payment methods, card and sepa-debit.

dark tulip
#

can I have the subscription ID?

floral elk
#

its from friday. should i create another one?

dark tulip
#

sure, either one works

floral elk
#

sub_1KnIJ9KrBBnfzJ7JwQ9Mh9tg

bold zodiac
#

Hi! I'm taking over this thread. Could you summarize the issue while I catchup?

dark tulip
floral elk
#

im trying to create a subscription model for on of our partners in the Netherlands. We need to support ideal payment solution. We were informed by your support team to use sources for this. But this requires a 0.01 EUR confirmation transaction to receive bank information. #dev-help message in this thread i was informed that we should use subscriptions and payment elements on front end and it should work with ideal and sepa debit.

dark tulip
#

iDeal dosn't support recurring payment, but Stripe will create a SEPA Direct Debit payment for recurring payments

floral elk
#

setupIntent do not withdraw any money from customer bank account?

bold zodiac
#

A SetupIntent will save a payment method to charge it later, but won't charge it right away.

floral elk
#

okey, that looks promising, but how can i use this payment method with subscriptions?

dark tulip
#

Hi @floral elk once you have collected the SEPA debit payment method, you can attach it to the customer and set it as the invoice_settings.default_payment_method Stripe will use this payment method to automatically charge the customer.

floral elk
#

i got redirected to this page, it says that 0.01 EUR payment is required

i created a setup intent on my backend and then call confirmIdealSetup on my front end

dark tulip
floral elk
#

ye, but we want to avoid this 0.01 EUR payment, is it possible with ideal payments?

dark tulip
#

Stripe needs to charge in order to confirm the bank details. After your customer authenticates the payment, Stripe will refund it.

floral elk
#

okey, do you provide any other solutions so we can use recurring subscriptions with customers bank account? we dont want card payments

dark tulip
floral elk
#

does sepa direct debit requires 0.01 EUR to setup subscription?

dark tulip
floral elk
#

can i somehow simulate next payment from recurring subscription? i want to check if i can charge user in next period

dark tulip