#Andrii-webhook
1 messages · Page 1 of 1 (latest)
Hi there, so you want to know the details of the paymentMethod that was used in a paymentIntent?
Just to confirm, are you using sepa_debit payment method?
yes in the paymentIntent, but i use "Bank transfer"
Can you send me the PaymentIntent ID?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Thanks, I can see that you are using customer_balance as the payment method type
I checked the doc and it seems like theres's no attribtues available for customer_balance PaymentMethod https://stripe.com/docs/api/payment_methods/object?lang=node#payment_method_object-customer_balance
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
so I don't think you can get the IBAN data from there.
@kind girder okay, in general Where can i get the IBAN data ?
It depends on the payment method type. For instance, if the payment method type is sepa_debit, the payment method object contains the last4 of IBAN. https://stripe.com/docs/api/payment_methods/object?lang=node#payment_method_object-sepa_debit-last4
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I think you should use https://stripe.com/docs/payments/customer-balance/funding-instructions
Learn how to provide customer balance funding instructions without creating a PaymentIntent
okay, thanks. i'm cheking
Thanks @graceful oriole for helping out!
@graceful oriole is it method in Docs API ?
okay, thanks
Hi! I'm taking over this thread. Let me know if you have any question.
@fluid copper so, i want get info about IBAN Data , i use customer_balance method type, but i don't have info
when i use retrive payment method, there is not info about IBAN DATA
Is this the payment method pm_1LFGgoKnG67zhbleojvbgYu0 ?
yes
Thanks! Give me a few minutes to look into this.
sure
Sorry for the delay. I had a chat with a colleague about this. What exact information are you looking for?
The IBAN you showed in your screenshot is the IBAN shown to the end user to actually send their funds.
If you want access to the IBAN of the account that belongs to the customer, that's not possible.
i want just get IBAN, that save IBAN in my database
Which IBAN do you want? The IBAN the customer entered to send you the funds (that's the one you see in your dashboard), or the IBAN of the customer's account?
the IBAN of the customer's account
Unfortunately that's not possible with the customer_balance payment method.