GET api/GeorgeFarms/orderHistory?start={start}&end={end}
Retrieves a list of order history within a delivery date range.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| start |
The beginning date of the search date range. |
date |
Required |
| end |
The end date of the search date range. |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of order history.
Collection of GeorgeFarmsOrderHistory| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The ID of the record. |
integer |
None. |
| CustomerNumber |
The customer number of the record. |
string |
None. |
| CustomerName |
The name of the customer for the record. |
string |
None. |
| CustomerType |
The type of custoemr for the record. |
string |
None. |
| OrderNumber |
The order number of the record. |
integer |
None. |
| DeliveryDate |
The date delivered of the record. |
date |
None. |
| OrderLineItem |
The order line item of the record. |
string |
None. |
| InventoryNumber |
The inventory number of the record. |
string |
None. |
| InventoryDescription |
The description of the inventory for the record. |
string |
None. |
| ProcessLine |
The process line of the record. |
string |
None. |
| SaleQuantity |
The sale quantity of the record. |
decimal number |
None. |
| SalePrice |
The sale price of the record. |
decimal number |
None. |
| SaleUnitOfMeasurement |
The unit of measurement used by sale of the record. |
string |
None. |
| Cost |
The cost of the record. |
decimal number |
None. |
| CostUnitOfMeasurement |
The unit of measurement used by cost of the record. |
string |
None. |
Response Formats
application/json, text/json
[
{
"ID": 1,
"CustomerNumber": "sample string 2",
"CustomerName": "sample string 3",
"CustomerType": "sample string 4",
"OrderNumber": 5,
"DeliveryDate": "2026-03-06T22:34:28.5601786-05:00",
"OrderLineItem": "sample string 7",
"InventoryNumber": "sample string 8",
"InventoryDescription": "sample string 9",
"ProcessLine": "sample string 10",
"SaleQuantity": 11.0,
"SalePrice": 12.0,
"SaleUnitOfMeasurement": "sample string 13",
"Cost": 14.0,
"CostUnitOfMeasurement": "sample string 15"
},
{
"ID": 1,
"CustomerNumber": "sample string 2",
"CustomerName": "sample string 3",
"CustomerType": "sample string 4",
"OrderNumber": 5,
"DeliveryDate": "2026-03-06T22:34:28.5601786-05:00",
"OrderLineItem": "sample string 7",
"InventoryNumber": "sample string 8",
"InventoryDescription": "sample string 9",
"ProcessLine": "sample string 10",
"SaleQuantity": 11.0,
"SalePrice": 12.0,
"SaleUnitOfMeasurement": "sample string 13",
"Cost": 14.0,
"CostUnitOfMeasurement": "sample string 15"
}
]