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.
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": "8cb060ce-b041-4e15-9dfd-c05f44ac1f23",
"DetailLevel": "All"
}
This is an example of the response JSON. Results will vary depending on your data.
{
"PickingWaves": [
{
"LocationId": "968091cb-de81-471e-992b-48ab569c7985",
"UserId": 1,
"EmailAddress": "sample string 2",
"CreatedDate": "2022-03-09T13:04:13.8709487+00:00",
"OrderCount": 4,
"ItemCount": 5,
"ItemsPicked": 6,
"OrdersPicked": 7,
"AccumulatedInProgressSeconds": 8,
"StartTime": "2022-03-09T13:04:13.8709487+00:00",
"EndTime": "2022-03-09T13:04:13.8709487+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": "60d9d8e2-7020-4e8b-88c6-2d493aebea15",
"StockItemId": "ffc69ba0-3fe8-4071-aa3f-47178ac19fcb"
}
]
}
],
"Options": {
"ItemScanType": "Any",
"TrayScanRequired": true,
"TotScanRequired": true,
"BinRackScanRequired": true
},
"PickingWaveId": 9,
"State": "Unallocated"
}
]
}