#jaziel-payouts-transactions
1 messages · Page 1 of 1 (latest)
Hello! Not sure I understand, can you provide more details?
Yes i have one payout with two payments intents and i want to know how to get a response with the two paymants intents (postman)
You can get the Charges included in a Payout using this approach: https://stripe.com/docs/expand/use-cases#charges-in-payout
And those Charges will have payment_intent properties: https://stripe.com/docs/api/charges/object#charge_object-payment_intent
Thanks
Other Question I try to know the orders(WooCommerce) that are already paid and dont exceed the 7 days
Don't exceed the 7 days? Which 7 days?
Sorry, I can't read that. Can you tell me what it says?
Or link me to the page where you're seeing that?
Oh, is that from this page? https://stripe.com/docs/payouts#standard-payout-timing
Yes is that page
Im from mexico
Okay, so you want to get the Payment Intents that have already been paid out?
Yes
You would use the approach we talked about above; you could get the Payouts and see which Charges/Payment Intents they contain.
do you give me an example?
The example is provided in the docs above. Can you provide more details about exactly what you want to do?
I work with woocommerce and stripe, i need get the balance with the payout and which orders are
Which orders are what?
The relationship? Sorry, I'm still not understanding. Can you explain in much more detail what you want to do?
Okay, so it sounds like you want to list all Payouts: https://stripe.com/docs/api/payouts/list
Correct?
Which number? Please be specific.
But i want to know the number of the order that are paid in the transaction
That
that its a payment intent
Okay, so you need to use this approach to get the Charges in the Payouts: https://stripe.com/docs/expand/use-cases#charges-in-payout
Then from the Charges you can view the metadata, or if the metadata is on the Payment Intents you can go from the Charge to the Payment Intent and view the metadata there.
like this?
that is vb
I don't think so. It looks like you're listing/searching Charges there?
Did you look at the .NET sample code at the link I provided above?
You should be using things like BalanceTransactionListOptions and BalanceTransactionService.
Yeah, sorry, I think there's a big disconnect here. You're using the wrong API endpoint entirely.
You need to use /v1/balance_transactions, not /v1/charges/search.
Why are you using /v1/charges/search?
Do you have a Payout ID?
No
Okay, let's take a step back.
I thought your goal was to get the metadata for the Payment Intents which are included in a Payout. Is that correct or not correct?
You would have to do each Payout one by one.
I don´t understend