---
title: "Get a specific tax line item for an invoice"
method: GET
path: "/api/invoices/{invoiceId}/tax-line-items/{lineItemId}"
tags: ["Invoice Tax Line Item"]
---

# Get a specific tax line item for an invoice

`GET /api/invoices/{invoiceId}/tax-line-items/{lineItemId}`

## Path parameters

- `invoiceId` string, required
- `lineItemId` string, required

## Response `200`

Tax line item

- InvoiceTaxLineItemDto — Represents a tax line item on an invoice.
  - `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.Invoice.TaxLineItem.TaxLineItemDto.TaxCodeId is provided, the provided FulcrumProduct.PublicApi.Dto.Invoice.TaxLineItem.TaxLineItemDto.TaxRate will supercede the defined tax rate.
  - `avalaraOptions` InvoiceTaxLineItemAvalaraOptions — 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 invoice.
  - `salesOrderLineItemId` string, nullable — Related sales order line item id.
  - `taxCodeEditable` boolean, nullable — Indicates if the tax code used is editable.
  - `number` integer — Indicates if the tax code used is editable.
  - `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` — Invoice or tax line item 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)
