🎯
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

Create Picklist

Learn how to create picklists for order item pickups efficiently within the 'Brokering WIP' documentation.

Creates a picklist of the order items to be picked up. To create a picklist, you will need to call the /createPicklist endpoint with the POST method.

Request

Endpoint

https://<host>/api/createPicklist

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

Header

Body

facilityId: WH
facilityId_o_0: WH
shipmentMethodTypeId_o_0: STANDARD
itemStatusId_o_0: PICKITEM_PENDING
shipGroupSeqId_o_0: 00002
orderId_o_0: 10175
orderItemSeqId_o_0: 00101
productId_o_0: 10002
quantity_o_0: 1
inventoryItemId_o_0: 10120
picked_o_0: 1
_rowSubmit_o_0: Y
pickerIds: 10000

Note: Pass the data in form format.

Parameter
Description
Required (Y/N)

facilityId

The ID of the facility

facilityId_o_0

The ID of the picklist bin

shipmentMethodTypeId_o_0

The ID of the shipment method type

itemStatusId_o_0

The ID of the item status

shipGroupSeqId_o_0

The ID of the ship group sequence

orderId_o_0

The ID of the order

orderItemSeqId_o_0

The ID of the order item sequence

productId_o_0

The ID of the product

quantity_o_0

The quantity of the items

inventoryItemId_o_0

The ID of the inventory item

picked_o_0

The number of items to be picked

_rowSubmit_o_0

pickerIds

The ID of the picker

Response

Header

Body

{
    "quantity_o_0": "1",
    "orderItemSeqId_o_0": "00101",
    "picklistId_o_0": "10112",
    "facilityId_o_0": "WH",
    "shipGroupSeqId_o_0": "00002",
    "orderId_o_0": "10175",
    "picklistBinId_o_0": "10122",
    "facilityId": "WH",
    "pickerIds": "10000",
    "picked_o_0": "1",
    "shipmentMethodTypeId_o_0": "STANDARD",
    "inventoryItemId_o_0": "10120",
    "itemStatusId_o_0": "PICKITEM_PENDING",
    "picklistId": "10112",
    "picklistBinId": "10122",
    "_rowSubmit_o_0": "Y",
    "productId_o_0": "10002"
}
Parameter
Description

picklistId_o_0

The ID of the picklist

picklistBinId_o_0

The ID of the picklist bin

itemStatusId_o_0

The ID of the item status

picklistId

The ID of the picklist

picklistBinId

The ID of the picklist bin

productId_o_0

The ID of the product

PreviousAdd Shipment BoxNextIn Progress Orders

Last updated 10 months ago

Was this helpful?