Stripe API - 过滤争议请求

我正在从Python Stripe API请求所有争议。我当前检索所有争议的代码如下。


import stripe


stripe.api_key = "12345"


disputes = stripe.Dispute.list(limit=100)

不过,我只想包含请求纠纷status的needs_response。在 Stripe API 中是否有特定的方式来请求这些争议?


UYOU
浏览 136回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python