#quentin
1 messages ยท Page 1 of 1 (latest)
Did you follow the guide here? https://stripe.com/docs/issuing/connect/funding
You'd create a Token/Source for each bank account. You can then use that src_xxx for multiple top-ups
The documentation is not talking about token or source, once the funding is created, it returns this :
{
"object": "funding_instructions",
"bank_transfer": {
"country": "DE",
"financial_addresses": [
{
"iban": {
"account_holder_name": "Stripe Technology Europe Limited",
"bic": "SXPYDEHH",
"country": "DE",
"iban": "DE00000000000000000001"
},
"supported_networks": [
"sepa"
],
"type": "iban"
}
],
"type": "eu_bank_transfer"
},
"currency": "eur",
"funding_type": "bank_transfer",
"livemode": false
}
will I be able to use the iban linked to the Connect Account for multiple bank transfer ?
Ah, sorry. I was looking at the US guide. Yes 1x Funding Instruction per top-up/transfer
Ok thank you ! ๐