---
title: "Get a list of customers for an item"
method: POST
path: "/api/items/{itemId}/customers/list"
tags: ["Item Customer"]
---

# Get a list of customers for an item

`POST /api/items/{itemId}/customers/list`

## Path parameters

- `itemId` string, required

## Response `200`

List of customers for the given item id

- ItemCustomerDto[]
  - `id` string, required — The id of the item-customer association. Use this value for update and delete operations.
  - `customerId` string, required — Customer id associated to this entity. Please reference /api/customers endpoint.
  - `customerItemNumber` string, nullable — The item number for this customer.
  - `customerItemName` string, nullable — The item name for this customer.
  - `unitOfMeasureName` string, nullable — The unit of measure name. This can be standard unit measurement names (Piece, Square foot, etc) or a custom measurement name.
  - `priceBreaks` CommonPriceBreakDto[], required — Price breaks.
    - `quantity` integer, nullable — Indicates at what quantity this price break becomes active.
    - `price` number, double, nullable — The price "per unit" at this price break.
    - `margin` number, double, nullable — Margin
    - `currencyCode` string, nullable — Currency code associated to this price break.
    - `vendorId` string, nullable — Vendor identifier. Please reference /api/vendors endpoint.
    - `customerId` string, nullable — Customer identifier. Please reference /api/customers endpoint.
    - `customerTierId` string, nullable — Customer tier identifier. Please reference /api/customer-tiers endpoint.
    - `unitOfMeasureName` string, nullable — The unit of measurement.
    - `type` 'price' | 'margin' | 'cost' | 'operation' | 'shopRate', required

## Other responses

- `404` — The 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)
