Returns a list of pickwaves as well as dummy entries for users who have permissions to complete pickwaves, but don't currently have any assigned. These entries will have a PickwaveId of 0.
Name | Type | Description |
---|---|---|
request | GetPickingWavesRequest |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Picking/GetPickwaveUsersWithSummary
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
request={
"State": 0,
"LocationId": "576c20d7-0330-4e78-9e1f-b180c89098ae",
"DetailLevel": "All"
}
This is an example of the response JSON. Results will vary depending on your data.
{
"PickingWaves": [
{
"LocationId": "b9fa254a-f2d3-4c66-88e4-73b04e94077c",
"UserId": 1,
"EmailAddress": "sample string 2",
"CreatedDate": "2023-01-10T13:49:53.9559909+00:00",
"OrderCount": 4,
"ItemCount": 5,
"ItemsPicked": 6,
"OrdersPicked": 7,
"AccumulatedInProgressSeconds": 8,
"StartTime": "2023-01-10T13:49:53.9559909+00:00",
"EndTime": "2023-01-10T13:49:53.9559909+00:00",
"GroupType": "Items",
"Orders": [
{
"PickingWaveOrdersRowId": 1,
"PickingWaveId": 2,
"OrderId": 3,
"PickState": "Unpicked",
"SortOrder": 4,
"ItemCount": 5,
"PickedItemsCount": 6,
"Items": [
{
"PickingWaveItemsRowId": 1,
"PickingWaveId": 2,
"PickedQuantity": 3,
"TotBarcode": "sample string 4",
"SortOrder": 5,
"ToPickQuantity": 6,
"TOTId": 1,
"TrayTag": "sample string 7",
"PickingTag": "sample string 8",
"ItemState": 0,
"BatchInventoryId": 1,
"OrderId": 9,
"OrderItemRowId": "efe00829-bad0-4371-b461-49498faa4ed5",
"StockItemId": "31fd1d9c-7268-4d85-8bd5-a449bd4133ac"
}
]
}
],
"Options": {
"ItemScanType": "Any",
"TrayScanRequired": true,
"TotScanRequired": true,
"BinRackScanRequired": true
},
"PickingWaveId": 9,
"State": "Unallocated"
}
]
}