---
title: "List Contract Bundles"
method: GET
path: "/rr/api/v1/contracts/{contract_id}/bundles"
tags: ["Revenue Recognition"]
---

# List Contract Bundles

`GET /rr/api/v1/contracts/{contract_id}/bundles`

Retrieve a list of contract bundles with optional filtering and sorting.

        Supports including soft-deleted records for audit and recovery purposes.
        When include_deleted=true, returns ONLY deleted records instead of active records.
        Deleted records contain minimal data: 'id', 'is_deleted=true', 'deleted_at' timestamp,
        and 'last_modified_at'. When 'false' or omitted, returns ONLY active records.
        This provides clean separation between active and deleted data.

## Path parameters

- `contract_id` integer, required

## Query parameters

- `include_deleted` boolean
- `last_modified_at__gte` string
- `last_modified_at__lte` string

## Response `200`

- ContractBundle[]
  - `id` integer, required
  - `is_deleted` boolean, required
  - `deleted_at` string, date-time, nullable, required
  - `end_date` string, date, nullable — Bundle end date. Required for standard contracts. For evergreen contracts this may be null to follow the contract timeline, or set to a billing-period end date.
  - `rebalance_journal_entries_indefinitely` boolean — Should only be used for Evergreen contracts. When true, linked invoice journal entries are rebalanced on each evergreen contract extension.
  - `lines` ContractBundleLine[], required
    - `id` integer, required
    - `is_deleted` boolean, required
    - `deleted_at` string, date-time, nullable, required
    - `contract_bundle` integer
    - `product_name` string, required
    - `amount` number, double, nullable
    - `created_at` string, date-time, required
    - `last_modified_at` string, date-time, required
    - `customer` integer, required
    - `product` integer, nullable
  - `bundle_name` string, required
  - `bundle_description` string, nullable
  - `start_date` string, date, required
  - `use_daily_accounting` boolean
  - `proration_method` 'standard' | 'thirty_day' | 'daily' — * `standard` - Standard (actual month length) * `thirty_day` - Fixed 30-day month * `daily` - Daily
  - `use_catchup` boolean
  - `catchup_date` string, date, nullable
  - `created_at` string, date-time, required
  - `last_modified_at` string, date-time, required
  - `customer` integer, required
  - `contract` integer, required

---

[API](https://skmtc.net/campfire/apis/campfire-developer-apis.md) · [All operations](https://skmtc.net/campfire/apis/campfire-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/campfire/campfire-developer-apis/versions/6945ebc3180e/schema)
