#venkateshjsoft
1 messages · Page 1 of 1 (latest)
Hello venkateshjsoft, we'll be with you shortly! Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
• https://discord.com/channels/841573134531821608/1164525002167693333, 0 days ago, 12 messages
• https://discord.com/channels/841573134531821608/1164509357405376614, 0 days ago, 15 messages
• https://discord.com/channels/841573134531821608/1164465480216612904, 0 days ago, 36 messages
• https://discord.com/channels/841573134531821608/1163569911696728124, 3 days ago, 14 messages
Hi
I was trying to use ideal payment for the first time it goes to successes immediately but for the renewal its take 1-2 days
but in test environment it goes to successed immediately
is there a way I can try ideal payment but get response after sometime instead of getting successed immediately in test environment
buy but for the renewal its take 1-2 days
Can you share an example of this? From my understanding iDeal gives immediate notification for successful/failed payment
First payment intent : pi_3NxXEwB4yD6nPBkB1prhme0D
second payment intent id: pi_3O2rmzB4yD6nPBkB06fRnD17
first payment I received success status immediately
For this payment SEPA was actually used
And for SEPA we do have tests values to delay the success: https://stripe.com/docs/payments/sepa-debit/accept-a-payment?platform=web&ui=checkout#test-integration
for recurring payments stripe team asked us to use sepa for ideal payment
Yes, this is explained here https://stripe.com/docs/payments/ideal/set-up-payment
how to save bank details from an iDEAL payment and charge your customers later with SEPA Direct Debit.
but we are not using setup intent, but we are using payment intent
Yes but it's the same idea. To have recurring payments, the first payment is with iDeal and the next ones with SEPA. That's how it works.
And iDeal is insteantaneous, but SEPA is not.
so the next ones with sepa takes time right
if its setup intent or create payment intent
And here are some tests values you can use to try this in test mode: https://stripe.com/docs/payments/sepa-debit/accept-a-payment?platform=web&ui=checkout#test-integration
I think you dindt understand my question
if I use ideal, I dont have option to give account number
if I cant use accoutn number then how can I use this test card
Well you have a few options. You could for example, after the subscription is created, change the payment method to use SEPA. Or test the flow with SEPA just with a PaymentIntent and without using Subsciption.
i want to attach the sample sepa debit NL55RABO0300065267 with customer
the api expect payment method id, but im not sure how can I give this account number
You could create a SetupIntent, then use the PaymentElement to collect the information, and there enter NL55RABO0300065267
im using create payment intent to create ideal payment
for the renewal i want to attach sepa debit with the above account number
When you collect that initial payment, are you saving the payment method for future use with setup_future_usage? That's the recommended way to do this, which then makes a re-usable SEPA PM available to you.
Then you access the generated_sepa_debit PM ID afterward: https://stripe.com/docs/payments/ideal/save-during-payment?platform=web#web-charge-sepa-pm
There should be no need to enter an account number again
now i want to deattach generated_sepa_debit and attach own payment method
is it possible or not
Oh, a different account?
- i create payment intent with ideal
- once its done, I want to attach a payment method with this account numebr NL55RABO0300065267
so I can make renewal payment to test the flow with delay procesing
is this clear
{
"amount": "3400",
"currency": "eur",
"receipt_email": "RandomuserKHGGE8L0@kamernet.nl",
"automatic_payment_methods": {
"enabled": "True"
},
"setup_future_usage": "off_session",
"customer": "cus_OqcOZ15M1kL0iK"
}
this is my request for the first payment
Gotcha, ok yea makes sense. You might just want to set up the SEPA payment method separately then, for testing: https://stripe.com/docs/payments/sepa-debit/set-up-payment?platform=web#web-test-integration