salesShipmentLine resource type

Represents a sales shipment line in Business Central.

Note

For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.

Methods

Method Return Type Description
GET salesShipmentLine salesShipmentLine Gets a sales shipment line object.
Navigation Return Type Description
salesShipment salesShipment Gets the salesshipment of the salesShipmentLine.
dimensionSetLines dimensionSetLines Gets the dimensionsetlines of the salesShipmentLine.

Properties

Property Type Description
id GUID The unique ID of the sales shipment line. Non-editable.
documentId GUID The ID of the parent sales shipment line.
documentNo string The number of the sales shipment line.
sequence integer The line sequence number.
lineType NAV.salesLineType The type of the sales shipment line. It can be " ", "G/L Account", "Item", "Resource", "Fixed Asset" or "Charge Item".
lineObjectNumber string The number of the object (account or item) of the sales shipment line.
description string Specifies the description of the sales shipment line.
description2 string
unitOfMeasureCode string The code of unit of measure for the sales shipment line.
unitPrice decimal Specifies the price for one unit of the item in the specified sales shipment line.
quantity decimal The quantity of the item in the sales shipment line.
discountPercent decimal The line discount percent.
taxPercent decimal The tax percent for the line. Read-Only.
shipmentDate date The date the item in the line is expected to ship.

JSON representation

Here is a JSON representation of the salesShipmentLine resource.

{
    "id": "GUID",
    "documentId": "GUID",
    "documentNo": "string",
    "sequence": "integer",
    "lineType": "NAV.salesLineType",
    "lineObjectNumber": "string",
    "description": "string",
    "description2": "string",
    "unitOfMeasureCode": "string",
    "unitPrice": "decimal",
    "quantity": "decimal",
    "discountPercent": "decimal",
    "taxPercent": "decimal",
    "shipmentDate": "date"
}

See Also

GET salesShipmentLine