#dcx86-customer-iban
1 messages · Page 1 of 1 (latest)
setting user payment account
so that the user can be paid on their IBAN account that was set previously
We are using create/update account and saving the iban using external account
https://stripe.com/docs/api/accounts/update
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ah, ok. An external account for a payout. I assumed you meant a IBAN related payment method to charge a customer
Is it not returned in the external_accounts field when you retrieve the Account object? https://stripe.com/docs/api/accounts/object#account_object-external_accounts
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
For setting iban we used account number property and I can't find that in the response
Likely be routing_number: https://stripe.com/docs/api/accounts/object#account_object-external_accounts-data-routing_number
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
The routing number doesn't look nothing like IBAN, it comes back in this format:
String: "##-##-##"
Unfortunately you can't retrieve the full IBAN from the API. You can get the last 4, though: https://stripe.com/docs/api/payment_methods/object#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.