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

# Create a part line item on a Quote

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

## Path parameters

- `quoteId` string, required

## Request body

- QuotePartLineItemCreateDto — Represents a part line item on a quote.
  - `itemId` string, required — Item id associated with this line item.
  - `quantity` number, double — The line item quantity
  - `price` number, double — The line item price.
  - `description` string, nullable — The part line item description. Defaults to the item's description if none specified.
  - `internalNotes` string, nullable — The line item internal notes
  - `itemNotes` string, nullable — The line item notes.
  - `isTaxable` boolean, nullable — Dictate if this line item is taxable.
  - `taxCodeId` string, nullable — Tax code key identifier. Please reference /api/tax-rates endpoint.
  - `taxRate` number, double, nullable — Tax rate to use for this entity. If a FulcrumProduct.PublicApi.Dto.Quote.PartLineItem.QuotePartLineItemCreateDto.TaxCodeId is provided, the provided FulcrumProduct.PublicApi.Dto.Quote.PartLineItem.QuotePartLineItemCreateDto.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.
  - `isPercentageDiscount` boolean, nullable — Indicates whether FulcrumProduct.PublicApi.Dto.Quote.PartLineItem.QuotePartLineItemCreateDto.DiscountAmount discount is percentage based (else, it's an absolute amount).
  - `discountAmount` number, double, nullable — The amount of the discount.
  - `accountingCodeId` string, nullable — Accounting code key identifier. Please reference /api/accounting-codes endpoint.

## Response `200`

Part 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/versions/1b5649cff14a/schema)
