GET api/v2/Orders/GetOrder?OrderId={OrderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
OrdersContract| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | integer |
None. |
|
| IntegratorId | integer |
None. |
|
| FarmId | integer |
None. |
|
| Status | integer |
None. |
|
| OrderDate | date |
None. |
|
| ExpectedDate | date |
None. |
|
| DeliveryDate | date |
None. |
|
| ConfirmedDate | date |
None. |
|
| InProcessDate | date |
None. |
|
| Remarks | string |
None. |
|
| IntegratorName | string |
None. |
|
| FarmName | string |
None. |
|
| StatusName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrderId": 1,
"IntegratorId": 2,
"FarmId": 3,
"Status": 4,
"OrderDate": "2026-09-22 12:11:07",
"ExpectedDate": "2026-09-22 12:11:07",
"DeliveryDate": "2026-09-22 12:11:07",
"ConfirmedDate": "2026-09-22 12:11:07",
"InProcessDate": "2026-09-22 12:11:07",
"Remarks": "sample string 5",
"IntegratorName": "sample string 6",
"FarmName": "sample string 7",
"StatusName": "sample string 8"
}
application/xml, text/xml
Sample:
<OrdersContract xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.agrifoodatsolutions.com/FPService/v2/contracts/2017/01"> <ConfirmedDate>2026-09-22T12:11:07.8163471+00:00</ConfirmedDate> <DeliveryDate>2026-09-22T12:11:07.8163471+00:00</DeliveryDate> <ExpectedDate>2026-09-22T12:11:07.8163471+00:00</ExpectedDate> <FarmId>3</FarmId> <FarmName>sample string 7</FarmName> <InProcessDate>2026-09-22T12:11:07.8163471+00:00</InProcessDate> <IntegratorId>2</IntegratorId> <IntegratorName>sample string 6</IntegratorName> <OrderDate>2026-09-22T12:11:07.8163471+00:00</OrderDate> <OrderId>1</OrderId> <Remarks>sample string 5</Remarks> <Status>4</Status> <StatusName>sample string 8</StatusName> </OrdersContract>