---
title: "List Cost Allocation"
method: GET
path: "/coa/api/cost-allocations"
tags: ["Company Objects"]
---

# List Cost Allocation

`GET /coa/api/cost-allocations`

Retrieve a list of cost allocations 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.

## Query parameters

- `include_deleted` boolean
- `last_modified_at__gte` string
- `last_modified_at__lte` string
- `limit` integer
- `offset` integer

## Response `200`

- PaginatedCostAllocationList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` CostAllocation[], required
    - `id` integer, required
    - `lines` CostAllocationLine[], required
      - `id` integer, required
      - `allocation` integer
      - `account_name` string, nullable, required — Combines account number and name in the format "number - name"
      - `department_name` string, required
      - `tags` object[], required
      - `percentage` number, double
      - `tag_ids` integer[]
      - `tag_group_ids` integer[]
      - `created_at` string, date-time, required
      - `last_modified_at` string, date-time, required
      - `customer` integer, required
      - `account` integer, required
      - `department` integer, nullable
    - `line_count` integer, required
    - `is_deleted` boolean, required
    - `deleted_at` string, date-time, nullable, required
    - `name` string, required
    - `number` string, nullable
    - `created_at` string, date-time, required
    - `last_modified_at` string, date-time, required
    - `customer` integer, required
    - `account` integer, nullable

---

[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)
