---
title: "Get a list of fee lines items for a Quote"
method: POST
path: "/api/quotes/{quoteId}/fee-line-items/list"
tags: ["Quote Fee Line Item"]
---

# Get a list of fee lines items for a Quote

`POST /api/quotes/{quoteId}/fee-line-items/list`

## Path parameters

- `quoteId` string, required

## Response `200`

List of fee line items for the given Quote id

- QuoteFeeLineItemDto[]
  - `id` string, required — Unique id associated to this entity.
  - `name` string, nullable — Verbose name for this entity.
  - `description` string, nullable — Verbose description for this entity.
  - `quantity` number, double, nullable — The line item quantity
  - `price` number, double, required — The line item price.
  - `unitOfMeasure` 'notApplicable' | 'piece' | 'linearFeet' | 'hour' | 'yard' — Line item unit of measure.
  - `isTaxable` boolean, nullable — Dictate if this fee is taxable.
  - `overrideTaxRate` boolean, nullable — Dictate if the tax rate is overridden.
  - `taxCodeId` string, nullable — Tax code key identifier.
  - `taxRate` number, double, nullable — Tax code to use for this entity. If a FulcrumProduct.PublicApi.Dto.Quote.FeeLineItem.QuoteFeeLineItemDto.TaxCodeId is provided and FulcrumProduct.PublicApi.Dto.Quote.FeeLineItem.QuoteFeeLineItemDto.OverrideTaxRate = true, the provided FulcrumProduct.PublicApi.Dto.Quote.FeeLineItem.QuoteFeeLineItemDto.TaxRate will supercede the defined tax rate.
  - `number` integer — Line number
  - `accountingDetails` CommonAccountingDetailsDto, required — An object that contains all accounting details.
    - `classId` string, nullable — Item class identifier. Please reference /api/item-classes endpoint.
    - `incomeAccountId` string, nullable — Income account (chart of accounts) key identifier. Please reference /api/chart-of-accounts endpoint.
    - `assetAccountId` string, nullable — Asset account (chart of accounts) key identifier. Please reference /api/chart-of-accounts endpoint.
    - `expenseAccountId` string, nullable — Expense account (chart of accounts) key identifier. Please reference /api/chart-of-accounts endpoint.
    - `cogsAccountId` string, nullable — COGS account (chart of accounts) key identifier. Please reference /api/chart-of-accounts endpoint.
  - `accountingCodeId` string, nullable — Accounting code key identifier. Please reference /api/accounting-codes endpoint.

## Other responses

- `404` — The Quote did not exist

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
