如何检索通过Stripe客户门户添加的Stripe卡ID ?



如何检索通过Stripe客户门户添加的Stripe卡ID ?

当我试图通过

访问它时,它是不可见的。
test = stripe.Customer.list_sources(
'cus_Izw...',
object="card",
limit=3,
)

我在响应中看到:

{
"data": [],
"has_more": false,
"object": "list",
"url": "/v1/customers/cus_Izw.../sources"
}

通过Customer Portal添加的卡片是PaymentMethods而不是source。为了列出它们,您可以使用/v1/payment_methods。在Python中,它看起来像:

stripe.PaymentMethod.list(
customer="cus_xxx",
type="card",
)

相关内容

  • 没有找到相关文章

最新更新