#akdj16
1 messages · Page 1 of 1 (latest)
It'll likely always be sepa_debit as that is the recurring type of a Bancontact payment method:
After your customer authenticates the payment, Stripe refunds the payment and store 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.
https://stripe.com/docs/payments/bancontact/set-up-payment#:~:text=After your customer,a subscription.
Bancontact PMs are single use and can't be saved to your customers
yes, I know that, but how to find out that the sepa pm attached is caused by a boncontact ?
I'm not sure you can unfortunately. Maybe you can check for some details in the sepa_debit hash on the PM: https://stripe.com/docs/api/payment_methods/object#payment_method_object-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.
Otherwise you may need to make a manually link between the 2, perhaps using metadata: https://stripe.com/docs/api/payment_methods/object#payment_method_object-metadata
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
can we retrieve the setupIntent using the paymentMethod?
that what I prefer to avoid 🥲
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.