#maxrundoo_16388

1 messages · Page 1 of 1 (latest)

bitter radishBOT
crude belfry
#

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?

sturdy gull
crude belfry
#

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?

bitter radishBOT
young radish
#

what have you tried? can you share the corresponding request id?

crude belfry
#

@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

young radish
#

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

Use test cards to validate your Stripe integration without moving real money. Test a variety of international scenarios, including successful and declined payments, card errors, disputes, and bank authentication. You can also test non-card payment methods and redirects.

crude belfry
#

sounds good, thanks!

young radish
crude belfry
#

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!