Close Intermediate

The Close Intermediate API closes an intermediate IBLPN (created during consolidation) and auto-generates distribution allocations, including directing the LPN to a specific location if provided. Ensures allocation accuracy and eliminates stranded work.

POST .../lgfapi/v10/replenishment/close_intermediate/

Request Parameters

Parameter Type Required Description
facility_id / facility_id__code Integer/String One required Facility context.
company_id / company_id__code Integer/String One required Company context.
container_nbr String Required Intermediate IBLPN to close.
distribution_uom String Optional UNITS or allocation UOM.
location_barcode String Required Drop location for intermediate IBLPN.

Sample Payload

{
  "parameters": {
    "facility_id__code": "FAC",
    "company_id": 1,
    "container_nbr": "TEMP-001"
  },
  "options": {
    "distribution_uom": "UNITS",
    "location_barcode": "DROP-LOC-001"
  }
}