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

# Create one or more part line items on a quote

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

## Path parameters

- `quoteId` string, required

## Request body

- QuotePartLineItemCreateBatchDto — Represents a batch of part line items to add to a quote.
  - `lineItems` QuotePartLineItemCreateDto[], required — The line items to add to a sales order.
    - `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 items added to quote

- BatchCreatedResponseDto — Response for a batch created record
  - `ids` string[], required — The ids of the created records

## 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/a41e60b375bc/schema)
