检索具有客户ID的条带费用

时间:2016-10-05 16:12:31

标签: ruby-on-rails stripe-payments

如果我有客户ID cus_jkhjsa776757,是否可以检索与该客户ID相关的费用?例如,像:

charge = Stripe::Charge.retrieve({ :id => 'cus_jkhjsa776757' })

为此我收到了一个错误:

  

" Stripe :: InvalidRequestError(不收费:cus_jkhjsa776757)"

1 个答案:

答案 0 :(得分:0)

尝试这个,它应该返回此客户ID指定的客户的费用。

DOCs

enter image description here

charge = Stripe::Charge.list(customer: "cus_jkhjsa776757")

也是您的好消息: How to get charge id after creating a subscription using Stripe?