Create or retrieve funding instructions for an Issuing balance. If funding instructions don’t yet exist for the account, we’ll create new funding instructions. If we’ve already created funding instructions for the account, we’ll retrieve the same funding instructions. In other words, we’ll return the same funding instructions each time.
Parameters
- bank_
transferobjectRequired Additional parameters for
bank_funding typestransfer - currencyenumRequired
Three-letter ISO currency code, in lowercase. Must be a supported currency.
- funding_
typeenumRequired The
funding_to get the instructions for.type Possible enum valuesbank_transfer Use a bank_transfer hash to define the bank transfer type
Returns
Returns funding instructions for an Issuing balance
{ "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}Retrieve all applicable funding instructions for an Issuing balance.
Parameters
No parameters.
More parameters
- ending_
beforestring - limitinteger
- starting_
afterstring
Returns
Returns all funding instructions for an Issuing balance
{ "object": "list", "url": "/v1/issuing/funding_instructions", "has_more": false, "data": [ { "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 } ]}Simulate a top up Test helper
Simulates an external bank transfer and adds funds to an Issuing balance. This method can only be called in test mode.
Parameters
- amountintegerRequired
The amount to top up
- currencyenumRequired
The currency to top up
Returns
Returns testmode funding instructions for an Issuing balance
{ "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}