#jeyson
1 messages · Page 1 of 1 (latest)
I'm not too familiar with that UI since we're not really dashboard experts in here. Do you have automatic payouts enabled?
Also what page in the dashboard is that on?
I need to extract the future date on which the stripe amount will be sent to the connected account in nodejs.
there is a way to query it in node with the stripe api
the page in the dashboard is connected account
You can retrieve the transfer object and look at its balance transaction: https://stripe.com/docs/api/transfers/object#transfer_object-balance_transaction. Then, you can retrieve that balance transaction and inspect its available_on timestamp: https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-available_on
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.