GET api/OrderPrintBatches?StartDate={StartDate}&EndDate={EndDate}
Retrieves the print batches available to the authenticated user's team, warehouse, and assigned clients.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| StartDate |
Required batch creation start date. |
date |
None. |
| EndDate |
Required batch creation end date. The entire calendar day is included. |
date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderPrintBatchData| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderPrintBatchId |
Unique batch identifier assigned by the WMS. |
integer |
None. |
| Timestamp |
Date and time the batch was created, in Mountain time. |
date |
None. |
| User |
User who created the batch. |
string |
None. |
| Status |
Current batch status: Pending, Building, Created, Saved, Unresponsive, or Error. |
string |
None. |
| ClientCode | string |
None. |
|
| ClientName | string |
None. |
|
| IsDownloaded |
True after the generated batch has been saved or exported. |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OrderPrintBatchId": 1,
"Timestamp": "2026-08-16T01:21:35.3197349+00:00",
"User": "sample string 3",
"Status": "sample string 4",
"ClientCode": "sample string 5",
"ClientName": "sample string 6",
"IsDownloaded": true
},
{
"OrderPrintBatchId": 1,
"Timestamp": "2026-08-16T01:21:35.3197349+00:00",
"User": "sample string 3",
"Status": "sample string 4",
"ClientCode": "sample string 5",
"ClientName": "sample string 6",
"IsDownloaded": true
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderPrintBatchData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ISCAPI2.Models">
<OrderPrintBatchData>
<ClientCode>sample string 5</ClientCode>
<ClientName>sample string 6</ClientName>
<IsDownloaded>true</IsDownloaded>
<OrderPrintBatchId>1</OrderPrintBatchId>
<Status>sample string 4</Status>
<Timestamp>2026-08-16T01:21:35.3197349+00:00</Timestamp>
<User>sample string 3</User>
</OrderPrintBatchData>
<OrderPrintBatchData>
<ClientCode>sample string 5</ClientCode>
<ClientName>sample string 6</ClientName>
<IsDownloaded>true</IsDownloaded>
<OrderPrintBatchId>1</OrderPrintBatchId>
<Status>sample string 4</Status>
<Timestamp>2026-08-16T01:21:35.3197349+00:00</Timestamp>
<User>sample string 3</User>
</OrderPrintBatchData>
</ArrayOfOrderPrintBatchData>