Putaway Priority

This operation allows you to determine the order in which Putaway Types are triggered for putaway.

POST .../entity/putaway_priority

If you have a new facility and you want to copy the same Putaway Priority rules from your current facility, you can first GET the list by querying the putaway_priority entity, then POST the applicable data to this operation for the target facility.

Name Required Type Default Description
facility_id Integer Facility context by id.
Priority Integer Priority
putaway_type_id Integer Putaway Type ID
putaway_method_id Integer Putaway Method ID
putaway_search_mode_id Integer Putaway Search Mode ID
locn_type_id Integer Location Type ID
locn_size_type_id Integer Location Size Type ID
replenishment_zone_id Integer Replenishment Zone ID
consider_fefo_flg boolean Yes enables consider fefo flg
storage_priority_id

Integer
  • "1” indicates "Less than or equal to priority date" and
  • "2” indicates "Greater than or equal to priority date"

radius Integer Radious
radial_increment Integer Radial Increment

Example body request:

{

"fields": {

"facility_id": 1,

"priority": 1,

"putaway_type_id": 256860,

"putaway_method_id": 1,

"putaway_search_mode_id": 0,

"locn_type_id": 3,

"locn_size_type_id": 0,

"replenishment_zone_id": 35995,

"consider_fefo_flg”:false,

“storage_priority_id”

"radius": 1,

"radial_increment": 1

}

}