Line Item Object
  • 1 Minute to read
  • PDF

Line Item Object

  • PDF

Article Summary

Line Item Object

 

 

LineNumber

 

Description: An integer value to uniquely identify the line on the order.

Data Type: Number

 

 

 

ItemNumber

 

Description: A unique value that represents an item.

Data Type: String

Data Length: 50

Note: If the item number does not exist the fields CoreItemType, and UomType will be used to create the item with default values.

 

 

 

CoreItemType

 

Description: A unique value that represents an item.

Data Type: String

Values: BASIC, LOT, SERIAL, DATE

 

 

 

QuantityOrdered

 

Description: A decimal value representing the quantity to pick for the line item.

Data Type: Decimal

 

 

 

UomType

 

Description: A unit of measure type.

Data Type: String

Data Length: 50

Note: These values should mirror that of the ERP.

 

 

 

LineItemComment

 

Description: Comments for the line item.

Data Type: String

Data Length: 50

Note: These values should mirror that of the ERP.

 

 

 

Example

 

[

    {

          "LineNumber":1,

          "ItemNumber":"ItemExample1",

          "LineItemComment":"Example line comment",

          "CoreItemType":"Basic",

          "QuantityOrdered":20,

          "UomType":{

              "UomDesc":"EA",

              "SignificantDigits": 0,

              "BaseConversionFactor": 1

            }

    }

]