---
title: "Get the shipping charge line item for an invoice"
method: GET
path: "/api/invoices/{invoiceId}/shipping-charge-line-item"
tags: ["Invoice Shipping Charge Line Item"]
---

# Get the shipping charge line item for an invoice

`GET /api/invoices/{invoiceId}/shipping-charge-line-item`

## Path parameters

- `invoiceId` string, required

## Response `200`

Shipping charge line item

- InvoiceShippingChargeLineItemDto — Represents a shipping charge line item on an invoice.
  - `id` string, required — Unique id associated to this entity.
  - `name` string, required — The name of the shipping charge line.
  - `description` string, nullable — The description of the shipping charge line.
  - `amount` number, double, required — The amount of the charge.
  - `isTaxable` boolean, nullable — Dictate if this line item is taxable.
  - `overrideTaxRate` boolean, nullable — Dictate if the tax rate is overridden.
  - `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.Invoice.ShippingChargeLineItem.ShippingChargeLineItemDto.TaxCodeId is provided, the provided FulcrumProduct.PublicApi.Dto.Invoice.ShippingChargeLineItem.ShippingChargeLineItemDto.TaxRate will supercede the defined tax rate.
  - `externalReferences` object, nullable — Arbitrary key-value-pair like data that can be used to later on search for this line item.
  - `salesOrderLineItemId` string, nullable — Related sales order line item id.
  - `number` integer — Line number
  - `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

- `204` — Shipping charge line item does not exist
- `404` — Invoice 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/1b5649cff14a/schema)
