-
Notifications
You must be signed in to change notification settings - Fork 751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add BalanceTransactions resource #612
Conversation
Oh and cc @irace-stripe too :) |
Released as 6.32.0. |
Thanks! |
@ob-stripe We were using stripe.transfers.listTransactions()function to retrieve all transactions related to some transfer. But now this function does not exist. It was here in version 4.25.0 -> stripe-node/lib/resources/Transfers.js Line 27 in edca281
We need to get all Transactions related to some Transfer. |
As I see method stripe.transfers.listTransactions() was deleted in version 7.0 |
r? @rattrayalex-stripe @remi-stripe
cc @stripe/api-libraries
Adds a
stripe.balanceTransactions
resource withlist()
andretrieve()
methods.Right now balance transactions can be accessed via
stripe.balance.listTransactions()
/retrieveTransaction()
, but balance transactions are not really a nested resource, they just have a somewhat weird URL pattern.