Перейти до основного вмісту

Item Units of Measure API

Overview

The WMS Item Units of Measure API is a Business Central API page designed to manage item unit of measure data. This API allows external systems to interact with item unit of measure records, providing functionality for creating, reading, and updating information.

API Details

  • Publisher: smart
  • API Group: wms
  • API Version: v2.0
  • Entity Name: itemUnitOfMeasure
  • Entity Set Name: itemUnitsOfMeasure
  • Source Table: Item Unit of Measure
  • ODataKeyFields: Code, Item No.

Fields

The following fields are exposed in the API:

Field NameSource FieldRequiredDescription
CodeItem Unit of Measure.CodeYesUnique identifier for the unit of measure.
ItemNoItem Unit of Measure."Item No."YesItem number associated with the unit of measure.
CubageItem Unit of Measure.CubageNoCubage of the unit of measure.
HeightItem Unit of Measure.HeightNoHeight of the unit of measure.
LengthItem Unit of Measure.LengthNoLength of the unit of measure.
QtyPerUnitOfMeasureItem Unit of Measure."Qty. per Unit of Measure"NoQuantity per unit of measure.
WeightItem Unit of Measure.WeightNoWeight of the unit of measure.
WidthItem Unit of Measure.WidthNoWidth of the unit of measure.

Example Usage

Create a New Item Unit of Measure

POST host/instance/api/smart/wms/v2.0/companies(companyId)/itemUnitsOfMeasure
Content-Type: application/json

{
"Code": "UOM001",
"ItemNo": "ITEM001",
"Cubage": 1.5,
"Height": 10,
"Length": 20,
"QtyPerUnitOfMeasure": 100,
"Weight": 5,
"Width": 15
}

Retrieve an Item Unit of Measure

GET host/instance/api/smart/wms/v2.0/companies(companyId)/itemUnitsOfMeasure('ITEM001','UOM001')

Update an Item Unit of Measure

PATCH host/instance/api/smart/wms/v2.0/companies(companyId)/itemUnitsOfMeasure('ITEM001','UOM001')
Content-Type: application/json

{
"Height": 12,
"Weight": 6
}
© 2008 - 2026 SMART business