GET api/SendItBatch/{batchID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| batchID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Batch| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderBatchID | integer |
None. |
|
| OrderBatchName | string |
None. |
|
| WarehouseID | integer |
None. |
|
| WarehouseCode | string |
None. |
|
| WarehouseName | string |
None. |
|
| ClientID | integer |
None. |
|
| P3PLClientID | integer |
None. |
|
| ClientShortName | string |
None. |
|
| OrderCount | integer |
None. |
|
| PackageCount | integer |
None. |
|
| ShippedCount | integer |
None. |
|
| ErrorCount | integer |
None. |
|
| FaultCount | integer |
None. |
|
| DateTimeShipped | date |
None. |
|
| ManifestDate | date |
None. |
|
| Status | string |
None. |
|
| IsPrinted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrderBatchID": 1,
"OrderBatchName": "sample string 2",
"WarehouseID": 3,
"WarehouseCode": "sample string 4",
"WarehouseName": "sample string 5",
"ClientID": 6,
"P3PLClientID": 7,
"ClientShortName": "sample string 8",
"OrderCount": 9,
"PackageCount": 10,
"ShippedCount": 11,
"ErrorCount": 12,
"FaultCount": 13,
"DateTimeShipped": "2026-04-03T21:32:03.2891019-07:00",
"ManifestDate": "2026-04-03T21:32:03.2891019-07:00",
"Status": "sample string 15",
"IsPrinted": true
}
application/xml, text/xml
Sample:
<Batch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Models.SendIt"> <ClientID>6</ClientID> <ClientShortName>sample string 8</ClientShortName> <DateTimeShipped>2026-04-03T21:32:03.2891019-07:00</DateTimeShipped> <ErrorCount>12</ErrorCount> <FaultCount>13</FaultCount> <IsPrinted>true</IsPrinted> <ManifestDate>2026-04-03T21:32:03.2891019-07:00</ManifestDate> <OrderBatchID>1</OrderBatchID> <OrderBatchName>sample string 2</OrderBatchName> <OrderCount>9</OrderCount> <P3PLClientID>7</P3PLClientID> <PackageCount>10</PackageCount> <ShippedCount>11</ShippedCount> <Status>sample string 15</Status> <WarehouseCode>sample string 4</WarehouseCode> <WarehouseID>3</WarehouseID> <WarehouseName>sample string 5</WarehouseName> </Batch>