#kuklyy - ideal subscriptions
1 messages · Page 1 of 1 (latest)
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
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');
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
Basing that on this doc https://stripe.com/docs/payments/payment-methods/integration-options
I got EUR and Europe and still cant see ideal method
https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements
here if i set Germany i can see ideal
Do you have ideal enabled in your Dashboard? https://dashboard.stripe.com/settings/payment_methods
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
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?
Is this for a subscription where you specified payment_method_types: ['ideal']?
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'],
});
Hi 👋 I'm stepping in for @severe minnow . Give me a second to get caught up
i have to go now, please dont close the thread, let me know if you can help me with my problem
Threads will get archived after ~ 1 hour of inactivitty but you can always request they be re-opened
how can i make a reopen request?
Just ask in the main thread
ok, gnight
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
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Hi @floral elk I've re-opened your thread
hi, thank you. Can you help me with my problem with ideal payments?
sure, give me a sec to catch up the messages
OK, do you still get error in subscription creation API call?
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.
on your demo page in documentation i can see more payment methods https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements
i need to have an ideal option there
can I have the subscription ID?
its from friday. should i create another one?
sure, either one works
sub_1KnIJ9KrBBnfzJ7JwQ9Mh9tg
Hi! I'm taking over this thread. Could you summarize the issue while I catchup?
Hi @floral elk before I leave, just want to let you know that ideal doesn't support subscription, see https://stripe.com/docs/payments/payment-methods/integration-options for details
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.
iDeal dosn't support recurring payment, but Stripe will create a SEPA Direct Debit payment for recurring payments
setupIntent do not withdraw any money from customer bank account?
A SetupIntent will save a payment method to charge it later, but won't charge it right away.
okey, that looks promising, but how can i use this payment method with subscriptions?
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.
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
Right, the next step is to expand the latest_attempt field where you will find the generated_sepa_debit ID inside of payment_method_details. (https://stripe.com/docs/payments/ideal/set-up-payment?platform=web#charge-sepa-pm)
ye, but we want to avoid this 0.01 EUR payment, is it possible with ideal payments?
Stripe needs to charge in order to confirm the bank details. After your customer authenticates the payment, Stripe will refund it.
okey, do you provide any other solutions so we can use recurring subscriptions with customers bank account? we dont want card payments
You can refer to this table https://stripe.com/docs/payments/payment-methods/integration-options for the list of payment methods that support subscription
does sepa direct debit requires 0.01 EUR to setup subscription?
I don't think it does, but you can test it out https://stripe.com/docs/payments/sepa-debit/set-up-payment?platform=web
can i somehow simulate next payment from recurring subscription? i want to check if i can charge user in next period
Sure, you can use test clocks to simulate https://stripe.com/docs/billing/testing/test-clocks