#Mario Contreras
1 messages · Page 1 of 1 (latest)
I have a question about the API docs:
I'm using python to call the "stripe.BalanceTransaction.list()" object, but how can I call multiple parameters of the same type?
I'm using something like this: "stripe.BalanceTransaction.list(type='charge', type='payment')" but throws an error "keyword argument repeated", I need help on how to do this.
I want to retrieve all the BalanceTransactions that are type payment and charge
I am afraid you can only specify type once
and it only can take one of those values
Oh I see, ok I'll consider this for my development, thank you for the information