#vaibhav_error
1 messages · Page 1 of 1 (latest)
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.
- vaibhav_unexpected, 17 hours ago, 70 messages
- vaibhav_unexpected, 1 day ago, 16 messages
👋 Welcome to your new thread!
⏲️ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1245970043821621248
📝 Have more to share? Add details, code, screenshots, videos, etc. below.
hi there, can you share the request id [0]? it'd look like req_xxx
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Sorry, I do not have the request id handy with me. Does payment method id help?
or give me a min. let me check
Sorry, I do not have the request id. I have the customer id for which these requests were made - cus_Q96nhnA9GNzXlh. Let me know if that helps.
hrm, it's odd but the PaymentMethod doesn't seem to be attached to the Customer
I do see that the SetupIntent was successful though
gimme a while to look into this
sure
ah, https://docs.stripe.com/payments/ideal/set-up-payment
iDEAL is a single use payment method where customers are required to authenticate each payment. With this integration, Stripe charges your customer 0.01 EUR through iDEAL to collect their bank details. After your customer authenticates the payment, Stripe refunds the payment and stores your customer’s IBAN in a SEPA Direct Debit payment method. You can then use the SEPA Direct Debit PaymentMethod to accept payments or set up a subscription.
The payment method from Setup Intent is an iDEAL (pm_1PM9l8FTe71TnU797VScEmID), but it was converted to pm_1PM9lHFTe71TnU79yB9abFuL (SEPA) for future usage
In short, the reusable PaymentMethod is facilitated via SEPA Debit and is a different payment method id that is attached to the Customer. So you need to expand / retrieve the latest_attempt in the SetupIntent to get this id instead https://docs.stripe.com/api/setup_attempts/object#setup_attempt_object-payment_method_details-ideal-generated_sepa_debit
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.