🎯
Integrate with HotWax
HomeGlossary
  • Introduction
  • HotWax Commerce API and Data feeds
    • Authentication
    • Orders
      • Find Order
      • Retrieve Orders
      • Get Orders
      • Created Orders
      • Order Adjustments
      • Order Reconciliations
    • Inventory
      • Check Inventory
      • BOPIS Check Inventory
      • Shipping Check Inventory
      • Reset Inventory
      • Update Inventory
      • Get Online ATP of Products
    • Brokering
      • Brokered Order Items Feed
    • Inbound Shipment
      • Import
    • Returns
      • Create Return
      • Returns Financial Feed
    • Facility
      • Post Code Lookup
      • Store Lookup
    • Fulfillment
      • Add Shipment Box
      • Create Picklist
      • In Progress Orders
      • Outstanding Orders
      • Packing Slip PDF
      • Ready To Ship Items
      • Retry Shipping Label
      • Shipping Label and Packing Slip
      • Shipping Label PDF
      • Update Orders
      • Update and Import File
      • Fulfilled Order Items Feed
    • Appeasements
      • Appeasements Feed
    • Miscellaneous
      • Perform Find
  • Journeys
    • Buy Online Pickup In Store
      • BOPIS PDP Experience
      • Ready For Pickup Notification
    • Brokering and Allocation
      • Order Soft Allocation
    • Pre-Orders
      • Promise Date Change Notification
  • Sample Files
    • Fulfilled Orders Items
    • Reset Inventory
    • Return
  • OMS Release Versions
    • OMS Versions
Powered by GitBook
On this page
  • Request
  • Endpoint
  • Header
  • Response
  • Header

Was this helpful?

Edit on GitHub
Export as PDF
  1. HotWax Commerce API and Data feeds
  2. Fulfillment

Add Shipment Box

Learn how to add a shipment box for order fulfillment with the 'Add Shipment Box' feature.

Adds a shipment box for the order for fulfillment. To add a shipment box, you will need to call the /addShipmentPackage endpoint with the POST method.

Request

Endpoint

https://<host>/api/addShipmentPackage

Example: https://demo-oms.hotwax.io/api/addShipmentPackage

Header

Body

{
  "picklistBinId": "10094",
  "shipmentBoxTypeId": "YOURPACKNG"
}
Parameter
Description
Required (Y/N)

picklistBinId

The ID of the picklist bin

shipmentBoxTypeId

The ID of the shipment box type

Response

Header

Body

{
  "shipmentPackageSeqId": "00001",
  "shipmentBoxTypeId": "YOURPACKNG",
  "shipmentRouteSegmentId": "00001",
  "shipmentId": "10252",
  "picklistBinId": "10094",
  "_EVENT_MESSAGE_": "Box added successfully"
}
Parameter
Description

shipmentPackageSeqId

The ID of the shipment package sequence

shipmentRouteSegmentId

The ID of the shipment route segment

shipmentId

The ID of the shipment

_EVENT_MESSAGE_

The communication message of the event

PreviousFulfillmentNextCreate Picklist

Last updated 10 months ago

Was this helpful?