#HVMP-transfers-payouts
1 messages · Page 1 of 1 (latest)
Hi there 👋 I don't think I've tried this for the exact scenario you're referencing, but have you tried using the list Balance Transactions function while providing the ID of a payout (needs to be using automatic payouts) and a type of transfer to only return Balance Transactions relating to transfers for a specific Payout?
https://stripe.com/docs/api/balance_transactions/list
I haven't looked at any of this... Let me check out that balance transactions endpoint.
You'll want to look at the source field of the Balance Transactions that are returned.
https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-source
This is super promising. We basically have our own job running to make manual payouts because we couldn't find programmatic access to transfers included in an automatic payout, so we managed it on our end.
If this works as I'm thinking we could rip out an entire cron-based job we're running and instead run off events from automatic payout via webhook or something.
Awesome! I hope it is what you're looking for then, but please let me know if it isn't.