---
title: "Create a fee line item on a Quote"
method: POST
path: "/api/quotes/{quoteId}/fee-line-items"
tags: ["Quote Fee Line Item"]
---

# Create a fee line item on a Quote

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

## Path parameters

- `quoteId` string, required

## Request body

- QuoteFeeLineItemCreateDto — Represents a fee line item on a sales order.
  - `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.
  - `accountingCodeId` string, nullable — Accounting code key identifier. Please reference /api/accounting-codes endpoint.
  - `unitOfMeasure` 'notApplicable' | 'piece' | 'linearFeet' | 'hour' | 'yard' — Line item unit of measure.
  - `isTaxable` boolean, nullable — Dictate if this fee is taxable.
  - `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.QuoteFeeLineItemCreateDto.TaxCodeId is provided, the provided FulcrumProduct.PublicApi.Dto.Quote.FeeLineItem.QuoteFeeLineItemCreateDto.TaxRate will supercede the defined tax rate.
  - `overrideTaxRate` boolean, nullable — Indicate if the tax supplied is intended to be an override.
  - `externalReferences` object, nullable — Arbitrary key-value-pair like data that can be used to later on search for this line item.

## Response `200`

Fee line item added to Quote

- CreatedResponseDto — Response for a created record
  - `id` string, required — The id of the created record

## Other responses

- `400` — Validation issues with input

---

[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/revisions/1b5649cff14a/schema)
