Table of Contents

Packed Place API

Overview

The WMS Packed Place API is a Business Central API page designed to manage packed place data. This API allows external systems to interact with packed place records, providing functionality for reading and updating packed place information.

API Details

  • Publisher: smart
  • API Group: wms
  • API Version: v2.0
  • Entity Name: packedPlace
  • Entity Set Name: packedPlaces
  • Source Table: SMA Packed Place
  • ODataKeyFields: Shipment No, Place Code

Fields

The following fields are exposed in the API:

Field Name Source Field Required Description
placeCode SMA Packed Place."Place Code" Yes Unique identifier for the packed place.
contractorName Derived from SMA Delivery Routing Sheet."Contractor Name" No Name of the contractor.
routeCode Derived from SMA Delivery Routing Sheet."Route Code" No Code of the delivery route.
locationCode SMA Packed Place."Location Code" No Code of the location.
binCode SMA Packed Place."SMA Bin Code" Yes Code of the bin.
shipmentNo SMA Packed Place."Shipment No." Yes Shipment number associated with the packed place.
generalDeliveryCode SMA Packed Place."General Delivery Code" No General delivery code.
package SMA Packed Place.Package No Package information.
placeNo SMA Packed Place."Place No." No Place number.
weight SMA Packed Place.Weight No Weight of the packed place.
volume SMA Packed Place.Volume No Volume of the packed place.
packUserId SMA Packed Place."Pack User ID" No User ID of the person who packed the place.
packDateTime SMA Packed Place."Pack DateTime" No Date and time when the place was packed.
checkQuantity SMA Packed Place."Check Quantity" No Quantity checked.
checkUserId SMA Packed Place."Check User ID" No User ID of the person who checked the place.
checkDateTime SMA Packed Place."Check DateTime" No Date and time when the place was checked.
checkRegisterLines SMA Packed Place."Check Register Lines" No Register lines checked.
itemNo SMA Packed Place."Item No." No Item number associated with the packed place.
waybillCode SMA Packed Place."Waybill Code" No Waybill code for the packed place.
deliveryOrder Derived from SMA Delivery Routing Sheet."Delivery Order" No Delivery order number.

Example Usage

Retrieve all Packed Places

GET host/instance/api/smart/wms/v2.0/companies(companyId)/packedPlaces

Update a Packed Places

PATCH /host/instance/api/smart/wms/v2.0/companies(companyId)/packedPlaces('SHIP001','PLACE001')
Content-Type: application/json

{
     "generalDeliveryCode": "DEL001",
     "binCode": "BIN001"
}