Reputation: 11
I have transfers that were related with payments. I can see those through dashboard but seems they are not available to get using the API.
Transfer connected with many payments
Upvotes: 0
Views: 76
Reputation: 40084
Once you have fetched a transfer you can use the transfer ID with the balance transaction method. It's the only parameter you need to pass and it will return all the transactions related to that transfer.
If you are using NodeJS for example then it would be:
stripe.balance.listTransactions({ transfer: 'tr_8ahwq8qw34n' })
Upvotes: 1