ShippingItem
ShippingItem objects represent unique items that are tracked through Kargo towers. They are generated automatically as items pass through Kargo towers.
type ShippingItem {
partID: String!
quantity: Int!
occurredAt: String!
direction: ShippingDirection
label: Label
}
Fields
ShippingItem.partID ● String! non-null scalar
Part Number / SKU / Lot # / Serial Number assoicated with this ShippingItem. The specific string to include here is determined on configuration
ShippingItem.quantity ● Int! non-null scalar
For label-controlled ShippingItems, the quantity read off of label. For case-controlled ShippingItems, the quantity of unique cases counted/.
ShippingItem.occurredAt ● String! non-null scalar
UTC timestamp of wide-angle video found under videoUri.
ShippingItem.direction ● ShippingDirection enum
Shipment direction
ShippingItem.label ● Label object
All label information for this item
Member Of
Shipment object ● ShippingUnit object