#ivaylovasilev_34513_51116
1 messages · Page 1 of 1 (latest)
Yes, it's an 'expandable' field meaning it's not included in API responses by default: https://stripe.com/docs/api/expanding_objects
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
$stripe->prices->retrieve(
'price_xxx',
['expand' => ['tiers']]
)
Awesome, thank you a lot!