#skyekg
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.
- skyekg, 4 days ago, 4 messages
Hello! Yep, have a look here: https://docs.stripe.com/expand/use-cases#charges-in-payout
is this the Balance Transaction API?
It involves that API, yes.
the expanded source in Balance only returns the payout.
it doesn't return the transaction payments.
The transactions I need to get is this:
Payout
** - Payment to Invoice**
I need to get these transactions in Payout.
Not sure I understand. Can you give me the request ID showing your attempt to implement the expansion as explained in those docs? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
This is request ID
req_KYhTS2cieKYGIe
and this is the request ID from payout:
req_QkrGHoLuZTxlC3
You didn't specify the payout or type properties in either of those requests.
The type will narrow the results down to only payments.
Have another look at the docs and try again with those two properties specified as well as the expand property.
I think type is only available in List all balance transactions.
In my previous testing, I used the retrieved method where it doesn't have a type parameter.
I'll check out the list method in Balance Transactions.
The idea is that you list the Balance Transactions for a specific Payout (payout), and you only list the payment objects (type). That means you go from a Payout ID to a list of payments included in that Payout.
That's what's documented at the link I provided above.
Yep, Thank you so much. I can get all the transactions now.