GET pickwaves/{pickwaveId}
Returns a Pickwave record for a given Pickwave Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pickwaveId | integer | Required |
Body Parameters
None.
Response Information
Resource Description
Returns a Pickwave record for a given Pickwave Id
PickwaveModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BatchGUID | The GUID for the pickwave. | string | None. |
| PickwaveID | The StoreFeeder ID for the pickwave. | integer | None. |
| AssignedOnUTC | The date/time that the pickwave was assigned on. This is returned in UTC. | date | None. |
| AssignedUserID | The StoreFeeder user ID assigned to the pickwave. | integer | None. |
| DespatchedOrderCount | The total number of despatched orders in the pickwave. | integer | None. |
| PickedOnUTC | The date/time that the pickwave picking was completed on. This is returned in UTC. | date | None. |
| PickerID | The StoreFeeder picker ID picking the order in the warehouse. | integer | None. |
| StartedOnUTC | The date/time that the pickwave picking was started on. This is returned in UTC. | date | None. |
| Status | The current pickwave status (Open / Completed). | string | None. |
| Tag | THe tag assigned to the pickwave. | string | None. |
| TotalOrderCount | The total number of orders in the pickwave. | integer | None. |
| TotalUnitsCount | The total number of quantities for all products in the pickwave. | integer | None. |
| WarehouseID | The StoreFeeder warehouse ID where the products in the pickwave are stored. | integer | None. |
Response Formats
application/json, text/json
Sample:
{
"BatchGUID": "N36C15A7-B93C-463C-BBC1-300FDAA19DF8",
"PickwaveID": 1,
"AssignedOnUTC": "2025-11-05T10:22:30.8030158Z",
"AssignedUserID": 3,
"DespatchedOrderCount": 1,
"PickedOnUTC": "2025-11-05T10:22:30.8030158Z",
"PickerID": 4,
"StartedOnUTC": "2025-11-05T10:22:30.8030158Z",
"Status": "Open",
"Tag": "Example Tag",
"TotalOrderCount": 5,
"TotalUnitsCount": 5,
"WarehouseID": 2
}
application/xml, text/xml
Sample:
<PickwaveModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <BatchGUID>N36C15A7-B93C-463C-BBC1-300FDAA19DF8</BatchGUID> <PickwaveId>1</PickwaveId> <AssignedOnUtc>2025-11-05T10:22:30.8030158Z</AssignedOnUtc> <AssignedUserId>3</AssignedUserId> <DespatchedOrderCount>1</DespatchedOrderCount> <PickedOnUtc>2025-11-05T10:22:30.8030158Z</PickedOnUtc> <PickerId>4</PickerId> <StartedOnUtc>2025-11-05T10:22:30.8030158Z</StartedOnUtc> <Status>Open</Status> <Tag>Example Tag</Tag> <TotalOrderCount>5</TotalOrderCount> <TotalUnitsCount>5</TotalUnitsCount> <WarehouseId>2</WarehouseId> </PickwaveModel>