When a quote is created, it generates the quoted_subscription resource. This captures most of the details of the subscription that would eventually be created once the quote is invoiced. This resource is returned along with the quote for most of the associated operations.
{
"plan_id": "basic",
"plan_quantity": 1,
"billing_period": 1,
"billing_period_unit": "month",
"object": "quoted_subscription",
"addons": [
{
"id": "ssl",
"quantity": 1,
"unit_price": 495,
"object": "addon"
}
],
"event_based_addons": [
{
"id": "day-pass",
"quantity": 2,
"unit_price": 200,
"on_event": "subscription_creation",
"charge_once": true,
"object": "event_based_addon"
}
],
"coupons": [
{
"coupon_id": "plan_addons_coupon",
"object": "coupon"
}
]
}Applicable only when operation_type
of the quote is create_subscription_for_customer.
For subscriptions in the future
status
, this is the date/time when the subscription is set to start. The quote can be converted on a date/time after this date. This is called backdating the subscription creation. Backdating is performed when the subscription has already been provisioned but the conversion action has been delayed. Backdating is allowed only when the following prerequisites are met:
start_date cannot be earlier than 14th February.The decimal representation of the quantity of the plan purchased. Returned for quantity-based plans when multi-decimal pricing is enabled.
The decimal representation of the price or per-unit price of the plan. The value is in major units of the currency. Always returned when multi-decimal pricing is enabled.
Applicable only when operation_type
of the quote is change_subscription.
When change_option
is set to specific_date
, then this is the date/time at which the subscription change is scheduled to occur. The quote can be converted on a date/time after this date. This is called backdating the subscription change and performed when the subscription change has already been provisioned but the conversion action has been delayed. Backdating is allowed only when the following prerequisites are met:
Backdating must be enabled for subscription change operations.
Only the following changes can be backdated:
Changes in the recurring items or their prices.
Addition of non-recurring items.
Subscription status is active, cancelled, or non_renewing.
The current day of the month does not exceed the limit set in Chargebee for backdating subscription change. This limit is the day of the month by which the accounting for the previous month must be closed.
The date is on or after current_term_start.
The date is on or after the last date/time any of the following changes were made:
Changes in the recurring items or their prices.
Addition of non-recurring items.
The date is not more than duration X into the past where X is the billing period of the plan. For example, if the period of the subscription's plan is 2 months and today is 14th April, changes_scheduled_at cannot be earlier than 14th February.
Number of billing cycles the new contract term should run for, on contract renewal. The default value is the same as billing_cycles
or a custom value depending on the site configuration
.
List of coupons for this subscription
List of discounts for this quoted subscription.
Details of individual item prices that are part of this subscription
List of item tier.
The details of the contract term to be created when this quote is invoiced.