#Rob.Clayton
1 messages · Page 1 of 1 (latest)
You can look for the items in the Subscription object and iterate them accordingly: https://stripe.com/docs/api/subscriptions/object#subscription_object-items
items.data doesn't seem to work in python when accessing as a stripe object ... it seems to see items as a built in function, not an object/dictionary ...
What doesn't work and the issue you're facing? Can you share the code example?
If you log stripe_subscription what would you see?
It's a stripe subscription object
It appears items is attached as a dictionary item to the object, not as a field.
Seems I have to reference subscription['items']
Hmm I see.