标签: stripe-payments stripe-connect
我有与付款相关的转帐。我可以通过仪表板看到它们,但似乎无法使用API。
This is my charge on dashboard, as you can see it has two connected objects a customer and a transfer
Transfer connected with many payments
答案 0 :(得分:1)
提取转移后,您可以使用balance transaction方法使用转移ID。它是您需要传递的唯一参数,它将返回与该传输相关的所有事务。
如果您使用的是NodeJS,那么它将是:
stripe.balance.listTransactions({ transfer: 'tr_8ahwq8qw34n' })