---
title: "Update subscription line item"
method: PUT
path: "/subscriptions/lineitems/{id}"
tags: ["Subscriptions"]
---

# Update subscription line item

`PUT /subscriptions/lineitems/{id}`

Use when changing a subscription line item (e.g. quantity or price). Implemented by ending the current line and creating a new one for clean billing.

## Path parameters

- `id` string, required

## Request body

- UpdateSubscriptionLineItemRequest
  - `amount` string — Amount is the new price amount that overrides the original price
  - `billing_model` 'FLAT_FEE' | 'PACKAGE' | 'TIERED'
  - `commitment_amount` number — Commitment fields
  - `commitment_duration` 'MONTHLY' | 'ANNUAL' | 'WEEKLY' | 'DAILY' | 'QUARTERLY' | 'HALF_YEARLY' | 'ONETIME'
  - `commitment_overage_factor` number
  - `commitment_quantity` number
  - `commitment_time_buckets` CommitmentBucketRequest[] — Pointer so an explicit empty array can clear existing buckets (omission keeps them).
    - `commitment_type` 'amount' | 'quantity'
    - `commitment_value` string
    - `end` TypesBucket
      - `hour` integer
      - `minute` integer
    - `id` string
    - `overage_factor` string
    - `price` CreatePriceRequest
      - `amount` string
      - `billing_model` 'FLAT_FEE' | 'PACKAGE' | 'TIERED', required
      - `billing_period` 'MONTHLY' | 'ANNUAL' | 'WEEKLY' | 'DAILY' | 'QUARTERLY' | 'HALF_YEARLY' | 'ONETIME', required
      - `billing_period_count` integer
      - `currency` string, required
      - `description` string
      - `display_name` string
      - `end_date` string, date-time
      - `entity_id` string, required
      - `entity_type` 'PLAN' | 'SUBSCRIPTION' | 'ADDON' | 'PRICE' | 'COSTSHEET', required
      - `filter_values` object
      - `group_id` string — GroupID is the id of the group to add the price to
      - `invoice_cadence` 'ARREAR' | 'ADVANCE', required
      - `lookup_key` string
      - `metadata` object
      - `meter_id` string
      - `min_quantity` integer — MinQuantity is the minimum quantity of the price
      - `price_unit_config` PriceUnitConfig
        - `amount` string
        - `price_unit` string, required
        - `price_unit_tiers` CreatePriceTier[]
          - `flat_amount` string — flat_amount is the flat amount for the given tier (optional) Applied on top of unit_amount*quantity. Useful for cases like "2.7$ + 5c"
          - `unit_amount` string, required — unit_amount is the amount per unit for the given tier
          - `up_to` integer — up_to is the quantity up to which this tier applies. It is null for the last tier. IMPORTANT: Tier boundaries are INCLUSIVE. - If up_to is 1000, then quantity less than or equal to 1000 belongs to this tier - This behavior is consistent across both VOLUME and SLAB tier modes
      - `price_unit_type` 'FIAT' | 'CUSTOM', required
      - `start_date` string, date-time
      - `tier_mode` 'VOLUME' | 'SLAB'
      - `tiers` CreatePriceTier[]
        - `flat_amount` string — flat_amount is the flat amount for the given tier (optional) Applied on top of unit_amount*quantity. Useful for cases like "2.7$ + 5c"
        - `unit_amount` string, required — unit_amount is the amount per unit for the given tier
        - `up_to` integer — up_to is the quantity up to which this tier applies. It is null for the last tier. IMPORTANT: Tier boundaries are INCLUSIVE. - If up_to is 1000, then quantity less than or equal to 1000 belongs to this tier - This behavior is consistent across both VOLUME and SLAB tier modes
      - `transform_quantity` PriceTransformQuantity
        - `divide_by` integer — Divide quantity by this number
        - `round` 'up' | 'down'
      - `trial_period_days` integer
      - `type` 'USAGE' | 'FIXED', required
    - `start` TypesBucket
      - `hour` integer
      - `minute` integer
    - `true_up_enabled` boolean
  - `commitment_true_up_enabled` boolean
  - `commitment_type` 'amount' | 'quantity'
  - `commitment_windowed` boolean
  - `effective_from` string — EffectiveFrom for the existing line item (if not provided, defaults to now)
  - `metadata` object — Metadata for the new line item
  - `tier_mode` 'VOLUME' | 'SLAB'
  - `tiers` CreatePriceTier[] — Tiers determines the pricing tiers for this line item
    - `flat_amount` string — flat_amount is the flat amount for the given tier (optional) Applied on top of unit_amount*quantity. Useful for cases like "2.7$ + 5c"
    - `unit_amount` string, required — unit_amount is the amount per unit for the given tier
    - `up_to` integer — up_to is the quantity up to which this tier applies. It is null for the last tier. IMPORTANT: Tier boundaries are INCLUSIVE. - If up_to is 1000, then quantity less than or equal to 1000 belongs to this tier - This behavior is consistent across both VOLUME and SLAB tier modes
  - `transform_quantity` PriceTransformQuantity
    - `divide_by` integer — Divide quantity by this number
    - `round` 'up' | 'down'

## Response `200`

OK

- SubscriptionLineItemResponse
  - `addon_association_id` string
  - `billing_period` 'MONTHLY' | 'ANNUAL' | 'WEEKLY' | 'DAILY' | 'QUARTERLY' | 'HALF_YEARLY' | 'ONETIME'
  - `billing_period_count` integer — from price at create; default 1
  - `commitment_amount` string — Commitment fields
  - `commitment_duration` 'MONTHLY' | 'ANNUAL' | 'WEEKLY' | 'DAILY' | 'QUARTERLY' | 'HALF_YEARLY' | 'ONETIME'
  - `commitment_overage_factor` string
  - `commitment_quantity` string
  - `commitment_time_buckets` TypesTimeOfDayBucket[]
    - `commitment_type` 'amount' | 'quantity'
    - `commitment_value` string
    - `end` TypesBucket
      - `hour` integer
      - `minute` integer
    - `id` string — ID is server-assigned. Stable for the lifetime of the line item; invoice breakdown and analytics responses reference this ID.
    - `overage_factor` number
    - `price_id` string — PriceID is the SUBSCRIPTION-scoped price created at bucket-creation time. Immutable post-create; changing pricing requires a successor line item.
    - `start` TypesBucket
      - `hour` integer
      - `minute` integer
    - `true_up_enabled` boolean
  - `commitment_true_up_enabled` boolean
  - `commitment_type` 'amount' | 'quantity'
  - `commitment_windowed` boolean
  - `created_at` string, date-time
  - `created_by` string
  - `currency` string
  - `customer_id` string
  - `display_name` string
  - `end_date` string, date-time
  - `entity_id` string
  - `entity_type` 'plan' | 'addon' | 'subscription'
  - `environment_id` string
  - `id` string
  - `invoice_cadence` 'ARREAR' | 'ADVANCE'
  - `metadata` object
  - `meter_display_name` string
  - `meter_id` string
  - `plan_display_name` string
  - `price` PriceResponse
    - `addon` AddonResponse
      - `created_at` string, date-time
      - `created_by` string
      - `description` string
      - `entitlements` EntitlementResponse[]
        - `addon` AddonResponse — recursive
        - `config_value` object
        - `created_at` string, date-time
        - `created_by` string
        - `display_order` integer
        - `end_date` string, date-time
        - `entity_id` string
        - `entity_type` 'PLAN' | 'SUBSCRIPTION' | 'ADDON'
        - `environment_id` string
        - `feature` FeatureResponse
          - `alert_settings` TypesAlertSettings
            - `alert_enabled` boolean
            - `critical` TypesAlertThreshold
              - …
            - `info` TypesAlertThreshold
              - …
            - `warning` TypesAlertThreshold
              - …
          - `created_at` string, date-time
          - `created_by` string
          - `description` string
          - `environment_id` string
          - `group` GroupResponse
            - `created_at` string, date-time
            - `entity_ids` string[]
            - `entity_type` string
            - `id` string
            - `lookup_key` string
            - `metadata` object
            - `name` string
            - `status` string
            - `updated_at` string, date-time
          - `group_id` string
          - `id` string
          - `lookup_key` string
          - `metadata` TypesMetadata
          - `meter` MeterResponse
            - `aggregation` MeterAggregation
              - …
            - `created_at` string, date-time
            - `event_name` string
            - `filters` MeterFilter[]
              - …
            - `id` string
            - `name` string
            - `reset_usage` 'BILLING_PERIOD' | 'NEVER'
            - `status` string
            - `tenant_id` string
            - `updated_at` string, date-time
          - `meter_id` string
          - `name` string
          - `reporting_unit` TypesReportingUnit
            - `conversion_rate` number — Multiplier: reporting_unit_value = unit_value * conversion_rate; must be > 0
            - `unit_plural` string — Display unit label, plural (e.g. "seconds")
            - `unit_singular` string — Display unit label, singular (e.g. "second")
          - `status` 'published' | 'deleted' | 'archived'
          - `tenant_id` string
          - `type` 'metered' | 'boolean' | 'static' | 'config'
          - `unit_plural` string
          - `unit_singular` string
          - `updated_at` string, date-time
          - `updated_by` string
        - `feature_id` string
        - `feature_type` 'metered' | 'boolean' | 'static' | 'config'
        - `id` string
        - `is_enabled` boolean
        - `is_soft_limit` boolean
        - `parent_entitlement_id` string
        - `plan` PlanResponse
          - `created_at` string, date-time
          - `created_by` string
          - `credit_grants` CreditGrantResponse[]
            - `cadence` 'ONETIME' | 'RECURRING'
            - `conversion_rate` string — amount in the currency = number of credits * conversion_rate ex if conversion_rate is 1, then 1 USD = 1 credit ex if conversion_rate is 2, then 1 USD = 0.5 credits ex if conversion_rate is 0.5, then 1 USD = 2 credits
            - `created_at` string, date-time
            - `created_by` string
            - `credit_grant_anchor` string, date-time
            - `credits` string
            - `end_date` string, date-time
            - `environment_id` string
            - `expiration_duration` integer
            - `expiration_duration_unit` 'DAY' | 'WEEK' | 'MONTH' | 'YEAR'
            - `expiration_type` 'NEVER' | 'DURATION' | 'BILLING_CYCLE'
            - `id` string
            - `metadata` TypesMetadata
            - `name` string
            - `period` 'DAILY' | 'WEEKLY' | 'MONTHLY' | 'ANNUAL' | 'QUARTERLY' | 'HALF_YEARLY'
            - `period_count` integer
            - `plan_id` string
            - `priority` integer
            - `scope` 'PLAN' | 'SUBSCRIPTION'
            - `start_date` string, date-time
            - `status` 'published' | 'deleted' | 'archived'
            - `subscription_id` string
            - `tenant_id` string
            - `topup_conversion_rate` string — topup_conversion_rate is the conversion rate for the topup to the currency ex if topup_conversion_rate is 1, then 1 USD = 1 credit ex if topup_conversion_rate is 2, then 1 USD = 0.5 credits ex if topup_conversion_rate is 0.5, then 1 USD = 2 credits
            - `updated_at` string, date-time
            - `updated_by` string
          - `description` string
          - `display_order` integer
          - `entitlements` EntitlementResponse[]
          - `environment_id` string
          - `id` string
          - `lookup_key` string
          - `metadata` TypesMetadata
          - `name` string
          - `prices` PriceResponse[] — TODO: Add inline addons
          - `status` 'published' | 'deleted' | 'archived'
          - `tenant_id` string
          - `updated_at` string, date-time
          - `updated_by` string
        - `plan_id` string — TODO: Remove this once we have a proper entitlement entity type
        - `start_date` string, date-time
        - `static_value` string
        - `status` 'published' | 'deleted' | 'archived'
        - `tenant_id` string
        - `updated_at` string, date-time
        - `updated_by` string
        - `usage_limit` integer
        - `usage_reset_period` 'MONTHLY' | 'ANNUAL' | 'WEEKLY' | 'DAILY' | 'QUARTERLY' | 'HALF_YEARLY' | 'NEVER'
      - `environment_id` string
      - `id` string
      - `lookup_key` string
      - `metadata` object
      - `name` string
      - `prices` PriceResponse[] — Optional expanded fields
      - `status` 'published' | 'deleted' | 'archived'
      - `tenant_id` string
      - `updated_at` string, date-time
      - `updated_by` string
    - `amount` string — Amount stored in main currency units (e.g., dollars, not cents) For USD: 12.50 means $12.50
    - `billing_cadence` 'RECURRING'
    - `billing_model` 'FLAT_FEE' | 'PACKAGE' | 'TIERED'
    - `billing_period` 'MONTHLY' | 'ANNUAL' | 'WEEKLY' | 'DAILY' | 'QUARTERLY' | 'HALF_YEARLY' | 'ONETIME'
    - `billing_period_count` integer — BillingPeriodCount is the count of the billing period ex 1, 3, 6, 12
    - `conversion_rate` string — ConversionRate is the conversion rate of the price unit to the fiat currency
    - `created_at` string, date-time
    - `created_by` string
    - `currency` string — Currency 3 digit ISO currency code in lowercase ex usd, eur, gbp
    - `description` string — Description of the price
    - `display_amount` string — DisplayAmount is the formatted amount with currency symbol For USD: $12.50
    - `display_name` string — DisplayName is the name of the price
    - `display_price_unit_amount` string — DisplayPriceUnitAmount is the formatted amount of the price unit
    - `end_date` string, date-time — EndDate is the end date of the price
    - `entity_id` string — EntityID holds the value of the "entity_id" field.
    - `entity_type` 'PLAN' | 'SUBSCRIPTION' | 'ADDON' | 'PRICE' | 'COSTSHEET'
    - `environment_id` string — EnvironmentID is the environment identifier for the price
    - `group` GroupResponse
      - `created_at` string, date-time
      - `entity_ids` string[]
      - `entity_type` string
      - `id` string
      - `lookup_key` string
      - `metadata` object
      - `name` string
      - `status` string
      - `updated_at` string, date-time
    - `group_id` string — GroupID references the group this price belongs to
    - `id` string — ID uuid identifier for the price
    - `invoice_cadence` 'ARREAR' | 'ADVANCE'
    - `lookup_key` string — LookupKey used for looking up the price in the database
    - `metadata` PriceJSONBMetadata
    - `meter` MeterResponse
      - `aggregation` MeterAggregation
        - `bucket_size` 'MINUTE' | '15MIN' | '30MIN' | 'HOUR' | '3HOUR' | '6HOUR' | '12HOUR' | 'DAY' | 'WEEK' | 'MONTH'
        - `expression` string — Expression is an optional CEL expression to compute per-event quantity from event.properties. When set, it replaces Field-based extraction. Property names are used directly (e.g., token * duration * pixel).
        - `field` string — Field is the key in $event.properties on which the aggregation is to be applied For ex if the aggregation type is sum for API usage, the field could be "duration_ms" Ignored when Expression is set.
        - `group_by` string — GroupBy is the property name in event.properties to group by before aggregating. Currently only supported for MAX aggregation with bucket_size. When set, aggregation is applied per unique value of this property within each bucket, then the per-group results are summed to produce the bucket total.
        - `multiplier` string — Multiplier is the multiplier for the aggregation For ex if the aggregation type is sum_with_multiplier for API usage, the multiplier could be 1000 to scale up by a factor of 1000. If not provided, it will be null.
        - `type` 'COUNT' | 'SUM' | 'AVG' | 'COUNT_UNIQUE' | 'LATEST' | 'SUM_WITH_MULTIPLIER' | 'MAX' | 'WEIGHTED_SUM'
      - `created_at` string, date-time
      - `event_name` string
      - `filters` MeterFilter[]
        - `key` string — Key is the key for the filter from $event.properties Currently we support only first level keys in the properties and not nested keys
        - `values` string[] — Values are the possible values for the filter to be considered for the meter For ex "model_name" could have values "o1-mini", "gpt-4o" etc
      - `id` string
      - `name` string
      - `reset_usage` 'BILLING_PERIOD' | 'NEVER'
      - `status` string
      - `tenant_id` string
      - `updated_at` string, date-time
    - `meter_id` string — MeterID is the id of the meter for usage based pricing
    - `min_quantity` string, nullable — MinQuantity is the minimum quantity of the price
    - `parent_price_id` string — ParentPriceID references the root price (always set for price lineage tracking)
    - `plan` PlanResponse
      - `created_at` string, date-time
      - `created_by` string
      - `credit_grants` CreditGrantResponse[]
        - `cadence` 'ONETIME' | 'RECURRING'
        - `conversion_rate` string — amount in the currency = number of credits * conversion_rate ex if conversion_rate is 1, then 1 USD = 1 credit ex if conversion_rate is 2, then 1 USD = 0.5 credits ex if conversion_rate is 0.5, then 1 USD = 2 credits
        - `created_at` string, date-time
        - `created_by` string
        - `credit_grant_anchor` string, date-time
        - `credits` string
        - `end_date` string, date-time
        - `environment_id` string
        - `expiration_duration` integer
        - `expiration_duration_unit` 'DAY' | 'WEEK' | 'MONTH' | 'YEAR'
        - `expiration_type` 'NEVER' | 'DURATION' | 'BILLING_CYCLE'
        - `id` string
        - `metadata` TypesMetadata
        - `name` string
        - `period` 'DAILY' | 'WEEKLY' | 'MONTHLY' | 'ANNUAL' | 'QUARTERLY' | 'HALF_YEARLY'
        - `period_count` integer
        - `plan_id` string
        - `priority` integer
        - `scope` 'PLAN' | 'SUBSCRIPTION'
        - `start_date` string, date-time
        - `status` 'published' | 'deleted' | 'archived'
        - `subscription_id` string
        - `tenant_id` string
        - `topup_conversion_rate` string — topup_conversion_rate is the conversion rate for the topup to the currency ex if topup_conversion_rate is 1, then 1 USD = 1 credit ex if topup_conversion_rate is 2, then 1 USD = 0.5 credits ex if topup_conversion_rate is 0.5, then 1 USD = 2 credits
        - `updated_at` string, date-time
        - `updated_by` string
      - `description` string
      - `display_order` integer
      - `entitlements` EntitlementResponse[]
        - `addon` AddonResponse
          - `created_at` string, date-time
          - `created_by` string
          - `description` string
          - `entitlements` EntitlementResponse[]
          - `environment_id` string
          - `id` string
          - `lookup_key` string
          - `metadata` object
          - `name` string
          - `prices` PriceResponse[] — Optional expanded fields
          - `status` 'published' | 'deleted' | 'archived'
          - `tenant_id` string
          - `updated_at` string, date-time
          - `updated_by` string
        - `config_value` object
        - `created_at` string, date-time
        - `created_by` string
        - `display_order` integer
        - `end_date` string, date-time
        - `entity_id` string
        - `entity_type` 'PLAN' | 'SUBSCRIPTION' | 'ADDON'
        - `environment_id` string
        - `feature` FeatureResponse
          - `alert_settings` TypesAlertSettings
            - `alert_enabled` boolean
            - `critical` TypesAlertThreshold
              - …
            - `info` TypesAlertThreshold
              - …
            - `warning` TypesAlertThreshold
              - …
          - `created_at` string, date-time
          - `created_by` string
          - `description` string
          - `environment_id` string
          - `group` GroupResponse
            - `created_at` string, date-time
            - `entity_ids` string[]
            - `entity_type` string
            - `id` string
            - `lookup_key` string
            - `metadata` object
            - `name` string
            - `status` string
            - `updated_at` string, date-time
          - `group_id` string
          - `id` string
          - `lookup_key` string
          - `metadata` TypesMetadata
          - `meter` MeterResponse
            - `aggregation` MeterAggregation
              - …
            - `created_at` string, date-time
            - `event_name` string
            - `filters` MeterFilter[]
              - …
            - `id` string
            - `name` string
            - `reset_usage` 'BILLING_PERIOD' | 'NEVER'
            - `status` string
            - `tenant_id` string
            - `updated_at` string, date-time
          - `meter_id` string
          - `name` string
          - `reporting_unit` TypesReportingUnit
            - `conversion_rate` number — Multiplier: reporting_unit_value = unit_value * conversion_rate; must be > 0
            - `unit_plural` string — Display unit label, plural (e.g. "seconds")
            - `unit_singular` string — Display unit label, singular (e.g. "second")
          - `status` 'published' | 'deleted' | 'archived'
          - `tenant_id` string
          - `type` 'metered' | 'boolean' | 'static' | 'config'
          - `unit_plural` string
          - `unit_singular` string
          - `updated_at` string, date-time
          - `updated_by` string
        - `feature_id` string
        - `feature_type` 'metered' | 'boolean' | 'static' | 'config'
        - `id` string
        - `is_enabled` boolean
        - `is_soft_limit` boolean
        - `parent_entitlement_id` string
        - `plan` PlanResponse — recursive
        - `plan_id` string — TODO: Remove this once we have a proper entitlement entity type
        - `start_date` string, date-time
        - `static_value` string
        - `status` 'published' | 'deleted' | 'archived'
        - `tenant_id` string
        - `updated_at` string, date-time
        - `updated_by` string
        - `usage_limit` integer
        - `usage_reset_period` 'MONTHLY' | 'ANNUAL' | 'WEEKLY' | 'DAILY' | 'QUARTERLY' | 'HALF_YEARLY' | 'NEVER'
      - `environment_id` string
      - `id` string
      - `lookup_key` string
      - `metadata` TypesMetadata
      - `name` string
      - `prices` PriceResponse[] — TODO: Add inline addons
      - `status` 'published' | 'deleted' | 'archived'
      - `tenant_id` string
      - `updated_at` string, date-time
      - `updated_by` string
    - `price_unit` string — PriceUnit is the code of the price unit (e.g., 'btc', 'eth')
    - `price_unit_amount` string — PriceUnitAmount is the amount of the price unit
    - `price_unit_id` string — PriceUnitID is the id of the price unit (for CUSTOM type)
    - `price_unit_tiers` PricePriceTier[] — PriceUnitTiers are the tiers for the price unit when BillingModel is TIERED
      - `flat_amount` string — flat_amount is the flat amount for the given tier (optional) Applied on top of unit_amount*quantity. Useful for cases like "2.7$ + 5c"
      - `unit_amount` string — unit_amount is the amount per unit for the given tier
      - `up_to` integer — up_to is the quantity up to which this tier applies. It is null for the last tier. IMPORTANT: Tier boundaries are INCLUSIVE. - If up_to is 1000, then quantity less than or equal to 1000 belongs to this tier - This behavior is consistent across both VOLUME and SLAB tier modes
    - `price_unit_type` 'FIAT' | 'CUSTOM'
    - `pricing_unit` PriceUnitResponse
      - `base_currency` string
      - `code` string
      - `conversion_rate` string
      - `created_at` string, date-time
      - `created_by` string
      - `environment_id` string
      - `id` string
      - `metadata` TypesMetadata
      - `name` string
      - `status` 'published' | 'deleted' | 'archived'
      - `symbol` string
      - `tenant_id` string
      - `updated_at` string, date-time
      - `updated_by` string
    - `sequence` integer — Sequence is the monotonic stamp bumped on every state change that subscription line items need to react to. Read by the plan-price sync; set by the database (DEFAULT nextval) on create and by the price repository on termination / compatibility-affecting edits.
    - `start_date` string, date-time — StartDate is the start date of the price
    - `status` 'published' | 'deleted' | 'archived'
    - `tenant_id` string
    - `tier_mode` 'VOLUME' | 'SLAB'
    - `tiers` PricePriceTier[]
      - `flat_amount` string — flat_amount is the flat amount for the given tier (optional) Applied on top of unit_amount*quantity. Useful for cases like "2.7$ + 5c"
      - `unit_amount` string — unit_amount is the amount per unit for the given tier
      - `up_to` integer — up_to is the quantity up to which this tier applies. It is null for the last tier. IMPORTANT: Tier boundaries are INCLUSIVE. - If up_to is 1000, then quantity less than or equal to 1000 belongs to this tier - This behavior is consistent across both VOLUME and SLAB tier modes
    - `transform_quantity` PriceJSONBTransformQuantity
      - `divide_by` integer — Divide quantity by this number
      - `round` 'up' | 'down'
    - `trial_period_days` integer — TrialPeriodDays is the number of days for the trial period Note: This is only applicable for recurring prices (BILLING_CADENCE_RECURRING)
    - `type` 'USAGE' | 'FIXED'
    - `updated_at` string, date-time
    - `updated_by` string
  - `price_id` string
  - `price_type` 'USAGE' | 'FIXED'
  - `price_unit` string
  - `price_unit_id` string
  - `quantity` string
  - `start_date` string, date-time
  - `status` 'published' | 'deleted' | 'archived'
  - `subscription_id` string
  - `subscription_phase_id` string
  - `tenant_id` string
  - `updated_at` string, date-time
  - `updated_by` string

## Other responses

- `400` — Invalid request
- `500` — Server error

---

[API](https://skmtc.net/flexprice/apis/flexprice-api-2.md) · [All operations](https://skmtc.net/flexprice/apis/flexprice-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/flexprice/flexprice-api-2/versions/da8f268dc77d/schema)
