#vien
1 messages · Page 1 of 1 (latest)
like this
What information isn't getting returned by the API exactly?
If you retrieve the subscription, it should have a items parameter listing the items you're subscribed to
https://stripe.com/docs/api/subscriptions/object
And the items should have the price listed
https://stripe.com/docs/api/subscription_items/object
The subscription object doesnt give me the product name. i have to use product_id to retrieve product name
Product is expandable under the price object
https://stripe.com/docs/api/subscription_items/object#subscription_item_object-price-product
So you'd want to perform expansion when you retrieve subscription
https://stripe.com/docs/api/expanding_objects
something like items.price.product
thanks. i will look into it now