POST public-api/ic/pickpackshiporder/FindOrdersWithMatchingOrderLineItemsSDK
This method returns the pick orders that contain a line item for any one of the supplied item numbers. An order is returned when it matches at least one of the item numbers; the item numbers do not all have to match. If no item numbers are supplied, the result reports an invalid model state. If an item number matches no order line, the result reports that item number as not found. Note: This is a Post API to avoid limitations inherent to passing parameters on the URL.
Request Information
URI Parameters
None.
Body Parameters
Collection of stringRequest Formats
application/json
Sample:
[ "sample string 1", "sample string 2" ]
Response Information
Resource Description
WaspResultOfListOfOrderModelSimple| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of OrderModelSimple |
None. |
|
| Messages | Collection of WtResult |
None. |
|
| BatchNumber | integer |
None. |
|
| HasError | boolean |
None. |
|
| HasHttpError | boolean |
None. |
|
| HasMessage | boolean |
None. |
|
| HasSuccessWithMoreDataRemaining | boolean |
None. |
|
| TotalRecordsLongCount | integer |
None. |
Response Formats
application/json
Sample:
{
"Data": [
{
"OrderId": 1,
"OrderNumber": "sample string 2",
"OrderTypeId": 0,
"OrderStatusId": 1,
"OrderStatusReasonCodeId": 0,
"OrderSourceId": 0,
"OrderPriorityId": 0,
"AssignedUserId": "81056c72-305f-4b38-ba54-6be41729153d",
"DateStarted": "2026-09-15T18:16:30.8194119+00:00",
"DateDue": "2026-09-15T18:16:30.8194119+00:00",
"DateComplete": "2026-09-15T18:16:30.8194119+00:00",
"ReferenceNumber": "sample string 3",
"SupplierId": 4,
"CustomerId": 5,
"OrderSiteId": 6,
"OrderSiteName": "sample string 7",
"OrderContainerId": "sample string 8"
},
{
"OrderId": 1,
"OrderNumber": "sample string 2",
"OrderTypeId": 0,
"OrderStatusId": 1,
"OrderStatusReasonCodeId": 0,
"OrderSourceId": 0,
"OrderPriorityId": 0,
"AssignedUserId": "81056c72-305f-4b38-ba54-6be41729153d",
"DateStarted": "2026-09-15T18:16:30.8194119+00:00",
"DateDue": "2026-09-15T18:16:30.8194119+00:00",
"DateComplete": "2026-09-15T18:16:30.8194119+00:00",
"ReferenceNumber": "sample string 3",
"SupplierId": 4,
"CustomerId": 5,
"OrderSiteId": 6,
"OrderSiteName": "sample string 7",
"OrderContainerId": "sample string 8"
}
],
"Messages": [
{
"ResultCode": 0,
"Message": "sample string 1",
"HttpStatusCode": 200,
"FieldName": "sample string 2"
},
{
"ResultCode": 0,
"Message": "sample string 1",
"HttpStatusCode": 200,
"FieldName": "sample string 2"
}
],
"BatchNumber": 1,
"HasError": false,
"HasHttpError": false,
"HasMessage": true,
"HasSuccessWithMoreDataRemaining": false,
"TotalRecordsLongCount": 1
}