---
title: "Get a specific tax line item for a sales order"
method: GET
path: "/api/sales-orders/{salesOrderId}/tax-line-items/{lineItemId}"
tags: ["Sales Order Tax Line Item"]
---

# Get a specific tax line item for a sales order

`GET /api/sales-orders/{salesOrderId}/tax-line-items/{lineItemId}`

## Path parameters

- `salesOrderId` string, required
- `lineItemId` string, required

## Response `200`

Tax line item

- SalesOrderTaxLineItemDto — Represents a tax line item on a sales order.
  - `id` string, required — Unique id associated to this entity.
  - `description` string, nullable — Verbose description for this entity.
  - `taxCodeId` string, nullable — Tax code key identifier. Please reference /api/tax-rates endpoint.
  - `taxRate` number, double, nullable — Tax code to use for this entity. If a FulcrumProduct.PublicApi.Dto.SalesOrder.TaxLineItem.TaxLineItemDto.TaxCodeId is provided, the provided FulcrumProduct.PublicApi.Dto.SalesOrder.TaxLineItem.TaxLineItemDto.TaxRate will supercede the defined tax rate.
  - `avalaraOptions` SalesOrderTaxLineItemAvalaraOptions — Options for use with Avalara (if enabled).
    - `address` CommonAddressDto — Address definition
      - `name` string, nullable — Name of the address (Bob's Shipping, Primary, Reno Warehouse, etc).
      - `address1` string, required — Primary address line.
      - `address2` string, nullable — Second address line.
      - `address3` string, nullable — Third address line.
      - `city` string, required — Address city
      - `stateProvince` string, nullable — Address state/province.
      - `postalCode` string, required — Postal/zip code.
      - `country` string, nullable — Country identifier.
      - `phone` string, tel, nullable — Phone number.
      - `email` string, email, nullable — Email address
  - `externalReferences` object, nullable — Arbitrary key-value-pair like data that can be used to later on search for this line item.
  - `price` number, double, nullable — Tax amount applied at this rate across the entire sales order.
  - `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.

## Other responses

- `404` — Sales order or tax line items 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/revisions/a41e60b375bc/schema)
