#kman_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1332420337413128253
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- kman_best-practices, 1 day ago, 10 messages
- kman_api, 2 days ago, 5 messages
Hi ๐
The way you would view the potential tiers would be to access the Price object on which those tiers are set.
ok, so I'm taking the priceId associated to the draft invoice and fetching the price object. But I'm not seeing the price tiers.
Here is the price object I'm getting back:
price {
"id": "price_1QkCBsHqjluyjg41hzW4p01v",
"object": "price",
"active": true,
"billing_scheme": "tiered",
"created": 1737584068,
"currency": "usd",
"custom_unit_amount": null,
"livemode": false,
"lookup_key": null,
"metadata": {},
"nickname": null,
"product": "prod_RdT8G26o1xHmlP",
"recurring": {
"aggregate_usage": null,
"interval": "month",
"interval_count": 1,
"meter": "mtr_test_61RVxpYtKyIdVL3KZ41Hqjluyjg414me",
"trial_period_days": null,
"usage_type": "metered"
},
"tax_behavior": "exclusive",
"tiers_mode": "graduated",
"transform_quantity": null,
"type": "recurring",
"unit_amount": null,
"unit_amount_decimal": null
}
is their a field I need to expand?
Bingo, expand tiers: https://docs.stripe.com/api/prices/object?lang=dotnet#price_object-tiers
ah okay I missed that in the docs. Thanks!