#annefeng - subscription pricing
1 messages · Page 1 of 1 (latest)
since our product need to charge customer based on the number of developer seats and usage together.
Yes this can be done https://stripe.com/docs/products-prices/pricing-models#flat-rate-metered-usage
I only saw meter-based pricing model
In that doc?
yes, I saw pre-seat and usage-based price model are separete option. That's why I ask the quesstion
The section of the doc that I linked to shows how to use them together:
customer='{{CUSTOMER_ID}}',
items=[
{"price": "{{FLAT_MONTHLY_FEE_PRICE_ID}}", "quantity": 1},
{"price": "{{METERED_USAGE_PRICE_ID}}", "quantity": 1},
],
)```
It is under the "Flat rate with metered usage" section in the doc
Ok, I got it. Thanks!