GET api/account/boxorder/recentPacked?count={count}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
count | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of BoxPackSummaryName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
OrderDate | date |
None. |
|
PackedDate | date |
None. |
|
TotalValue | decimal number |
None. |
|
TotalQuantity | decimal number |
None. |
|
ProductNames | string |
None. |
|
ProductSizeID | integer |
None. |
|
ProductSizeName | string |
None. |
|
PackedByName | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ID": 1, "OrderDate": "2025-05-11T10:40:42.7281124+00:00", "PackedDate": "2025-05-11T10:40:42.7281124+00:00", "TotalValue": 3.0, "TotalQuantity": 4.1, "ProductNames": "sample string 5", "ProductSizeID": 6, "ProductSizeName": "sample string 7", "PackedByName": "sample string 8" }, { "ID": 1, "OrderDate": "2025-05-11T10:40:42.7281124+00:00", "PackedDate": "2025-05-11T10:40:42.7281124+00:00", "TotalValue": 3.0, "TotalQuantity": 4.1, "ProductNames": "sample string 5", "ProductSizeID": 6, "ProductSizeName": "sample string 7", "PackedByName": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfBoxPackSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cag.Data.Box"> <BoxPackSummary> <ID>1</ID> <OrderDate>2025-05-11T10:40:42.7281124+00:00</OrderDate> <PackedByName>sample string 8</PackedByName> <PackedDate>2025-05-11T10:40:42.7281124+00:00</PackedDate> <ProductNames>sample string 5</ProductNames> <ProductSizeID>6</ProductSizeID> <ProductSizeName>sample string 7</ProductSizeName> <TotalQuantity>4.1</TotalQuantity> <TotalValue>3</TotalValue> </BoxPackSummary> <BoxPackSummary> <ID>1</ID> <OrderDate>2025-05-11T10:40:42.7281124+00:00</OrderDate> <PackedByName>sample string 8</PackedByName> <PackedDate>2025-05-11T10:40:42.7281124+00:00</PackedDate> <ProductNames>sample string 5</ProductNames> <ProductSizeID>6</ProductSizeID> <ProductSizeName>sample string 7</ProductSizeName> <TotalQuantity>4.1</TotalQuantity> <TotalValue>3</TotalValue> </BoxPackSummary> </ArrayOfBoxPackSummary>