GET api/Order/GetAllOrderItemsListBetweenDates?FromDate={FromDate}&ToDate={ToDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FromDate | string |
Required |
|
| ToDate | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ItemDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductName | string |
None. |
|
| Brand | string |
None. |
|
| Size | string |
None. |
|
| Quantity | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"ProductName": "sample string 1",
"Brand": "sample string 2",
"Size": "sample string 3",
"Quantity": 4
},
{
"$ref": "1"
}
]
application/octet-stream
Sample:
[{"$id":"1","ProductName":"sample string 1","Brand":"sample string 2","Size":"sample string 3","Quantity":4},{"$ref":"1"}]