#maxrundoo_16388
1 messages · Page 1 of 1 (latest)
https://stripe.com/docs/api/expanding_objects says that "Expansions on list requests start with the data property. For example, you would expand data.customers on a request to list charges and associated customers. Many deep expansions on list requests can be slow." but does it expadn every field?
flow_details requires explicit expansion on the field in order to get the information: https://stripe.com/docs/api/expanding_objects
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
In the spec of flow_details, it has an expandable note beside the parameter: https://stripe.com/docs/api/treasury/transactions/object#transaction_object-flow_details
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
yeah, but I'm using the list all transactions query - for a single transaction retrieval query I know I can simply expand that field, but how would I expand a flow_details for EACH transaction returned by the list all query?
what have you tried? can you share the corresponding request id?
@young radish I haven't tried this yet because I have no Transaction object to test on - my bad! Because of this, I have a question:
I'm testing out creating a ReceivedDebit (https://stripe.com/docs/api/treasury/received_debits/test_mode_create?lang=curl) so that I can see a test Transaction on my test Financial Account (FA). However, I don't have any funds in that test FA. I know that to add funds to that test FA onthe Stripe dashboard, I can add funds to my overall Treasury balance (which is $0). I know that to add funds to my Treasury balance, I can pull funds from my Payments balance (which is $0). What I'm struggling to do is add test funds to my payments balance via the dashboard. I went to https://dashboard.stripe.com/test/balance/overview to try to add funds as the docs (https://stripe.com/docs/connect/testing#testing-top-ups) say, but there is no "Add to balance" dialog. How can I do this?
I was able to create a test transaction via creation of a test ReceivedCredit, though. I was just wondering if there was a way to do this on the Stripe dashboard
https://stripe.com/docs/testing#available-balance - you can use the test card that bypasses the available balance to create a payment on your account if you want to add funds to your payment balance
sounds good, thanks!
i don't know if this guide is what you're looking for too? https://stripe.com/docs/treasury/moving-money/moving-money-into-financial-accounts
i've looked at that, there wasn't much information relevant to my issue via that link. It's fine though - I was able to add funds by creating a test ReceivedCredit transaction via CURL which solved my issue of having 0 funds. appreciate the help though!