#jclusso
1 messages · Page 1 of 1 (latest)
I believe it should be supported in the ruby client based on this in the ruby repo: https://github.com/stripe/stripe-ruby/blob/62fb31d578974d4e3ce2805fadd0179bcecc2382/lib/stripe/resources/customer.rb#L25
👍
if you want to retrieve it tho
once it's created
NotImplementedError: FundingInstructions cannot be accessed without a customer ID.```
was guesing from this
Sorry I missed this followup! What was the code you used that gave you that error?
Ah I see what you mean now - yeah I don't think there's a way to retrieve these right now
Stripe::FundingInstructions.retrieve customer: 'cus_OKntwdnc0LDOlD'
NotImplementedError: FundingInstructions cannot be accessed without a customer ID.
Yeah it looks like we only implemented creation and not a separate thing for retrieval
But I believe with funding instructions we wouldn't build a separate retrieval endpoint anyways - because you don't get back an ID from the response
I believe here you'd post (create) the call and the same results would come back
At least that's what i see when calling the endpoint
For a given customer, no they don't change
https://stripe.com/docs/payments/customer-balance/funding-instructions
The funding instructions will always be the same for a given customer across both the Customer Balance Funding Instructions API and the PaymentIntents API. As with PaymentIntents, you can request funding instructions using the bank transfer type and currency that best fits your customer.