Fetches a comprehensive list of all orders which are in process of pickup for fulfillment. To get in progress orders, you will need to call the /solr-query endpoint with the POST method.
Copy {
"json": {
"params": {
"rows": "10",
"sort": "orderDate asc",
"group": true,
"group.field": "picklistBinId",
"group.limit": 1000,
"group.ngroups": true,
"q.op": "AND",
"start": 0
},
"query": "(*:*)",
"filter": [
"docType: OISGIR",
"picklistItemStatusId: PICKITEM_PENDING",
"-fulfillmentStatus: Rejected",
"-shipmentMethodTypeId: STOREPICKUP",
"facilityId: Store_1",
"productStoreId: STORE"
],
}
}
Copy {
"response": {
"numFound": 2,
"start": 0,
"docs": [
{
"orderId": "NN11235",
"orderItemSeqId": "00001",
"shipGroupSeqId": "00001",
"inventoryItemId": "10539",
"reservedDatetime": "2020-07-28T10:06:15.497Z",
"itemQuantity": 1.0,
"quantityNotAvailable": 0.0,
"productId": "10575",
"keywordSearchText": [
"10575",
"Strike Endurance Tee-XL-Red"
],
"productName": "Strike Endurance Tee-XL-Red",
"spellchecker": "Strike Endurance Tee-XL-Red",
"productSku": "MS08-XL-Red",
"virtualProductName": "Strike Endurance Tee",
"uniqueOrderItemsCount": 2.0,
"isPicked": "Y",
"picklistBinId": "11234",
"picklistId": "11070",
"picklistItemStatusId": "PICKITEM_PENDING",
"picklistItemStatusDesc": "Pending",
"fulfillmentStatus": "InProgress",
"orderDate": "2020-07-28T10:06:11.087Z",
"orderTypeId": "SALES_ORDER",
"productStoreId": "NN_ECOM_STORE",
"orderStatusId": "ORDER_APPROVED",
"customerId": "10460",
"customerName": "John Wick",
"shipmentMethodTypeId": "SECOND_DAY",
"shipmentMethodTypeDesc": "Second Day",
"shipmentMethodTypeSeqNum": 7.0,
"facilityId": "NN_WH",
"facilityName": "California Warehouse",
"facilityTypeId": "WAREHOUSE",
"companyIds": [
"NN_COMPANY"
],
"orderIdentifications": [
"DC_ORDER_ID/106238"
],
"docType": "OISGIR",
"identifier": "NN11235-00001-00001-10539",
"docType-identifier": "OISGIR-NN11235-00001-00001-10539",
"_version_": 1721740067563634688
}
]
}
}