#jry_j
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- jry-balancetransaction-connect, 16 hours ago, 12 messages
I'm thinking that by fetching the whole list of the client external accounts can allow me to match destination id on the front end rather than sending multiple requests to Stripe to identify each payout destination individually
Hello! Can you provide more details about what specific aspect of your approach isn't working?
I'm trying to make this request in node.js
it's telling me I need to reach out to you guys
Oh, I see. You linked to https://stripe.com/docs/api/external_account_bank_accounts/retrieve which does have a Node sample, but it sounds like you meant to link to https://stripe.com/docs/api/external_account_bank_accounts/list
One moment...
Well, I thought there was a way to specify an arbitrary API endpoint, but I'm not finding it. You might need to make a direct HTTP request to the API without using the stripe-node library at all for this endpoint.
Ah, wait...
Looks like if you install the beta version of the library: https://github.com/stripe/stripe-node?tab=readme-ov-file#beta-sdks there is a rawRequest method available there you can use: https://github.com/stripe/stripe-node/tree/beta?tab=readme-ov-file#custom-requests
Sorry about the delay finding that. 😅
alright no problem, thanks for looking into it for me
Also, a colleage just pointed out that the Node library does appear to support this method even though the API reference says it doesn't. Here are the tests for it: https://github.com/stripe/stripe-node/blob/9ed9379d6d685dec28670923d0507a0984b813a6/test/resources/generated_examples_test.spec.js#L67-L113
So you don't need the beta apparently.