如果我有客户ID cus_jkhjsa776757
,是否可以检索与该客户ID相关的费用?例如,像:
charge = Stripe::Charge.retrieve({ :id => 'cus_jkhjsa776757' })
为此我收到了一个错误:
" Stripe :: InvalidRequestError(不收费:cus_jkhjsa776757)"
答案 0 :(得分:0)
尝试这个,它应该返回此客户ID指定的客户的费用。
在DOCs
中charge = Stripe::Charge.list(customer: "cus_jkhjsa776757")
也是您的好消息: How to get charge id after creating a subscription using Stripe?