0

我在 Stripe Account 上有一份客户名单。现在客户也完成了每月付款,我想要特定客户的付款清单。

我用过这个:

StripeCustomerService stripeCustomerInfo = new StripeCustomerService();
var customerInfo = stripeCustomerInfo.Get("customerId");

customerInfo不显示他到目前为止已完成的付款清单。

4

1 回答 1

-1

随着付款并生成发票。因此,我只需使用 Stripe 的发票服务获取信息,如下所述:

StripeInvoiceService invoiceService = new StripeInvoiceService();
var invoicesOfCustomer = invoiceService.List(10, 0, "CustomerId");

现在invoicesOfCustomer将列出他已完成的所有付款。

如果您有,invoiceId那么您可以将其用于单个发票信息。

var invoiceInfo = invoiceService.Get("invoiceId");

谢谢 :)

于 2015-07-07T05:50:57.800 回答