Stripe API PHP - Retreive订阅(不知道订阅ID)

时间:2017-08-01 16:20:51

标签: php stripe-payments

如果订阅ID尚未知晓,如何使用Stripe PHP库检索客户的订阅?

有没有办法做类似的事情:

$customer = \Stripe\Customer::retrieve($customerId);

$subscription = $customer->subscription;

$ subscription中的值将保留客户的订阅信息。

谢谢,

麦克

1 个答案:

答案 0 :(得分:2)

您需要列出订阅,并传递客户ID。

\Stripe\Subscription::all(array('customer'=>$customerId,'limit'=>10));

https://stripe.com/docs/api/php#list_subscriptions