---
title: "List Fixed Asset Classes"
method: GET
path: "/coa/api/fixed-asset-class"
tags: ["Company Objects"]
---

# List Fixed Asset Classes

`GET /coa/api/fixed-asset-class`

Retrieve a list of fixed asset classes 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`

- PaginatedFixedAssetClassList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` FixedAssetClass[], required
    - `id` integer, required
    - `is_deleted` boolean, required
    - `deleted_at` string, date-time, nullable, required
    - `asset_account_name` string, required
    - `accumulated_depreciation_account_name` string, required
    - `depreciation_expense_account_name` string, required
    - `name` string, required
    - `useful_life` integer, nullable
    - `created_at` string, date-time, required
    - `last_modified_at` string, date-time, required
    - `customer` integer, required
    - `asset_account` integer, nullable
    - `accumulated_depreciation_account` integer, nullable
    - `depreciation_expense_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)
