GET Seed/GetGrowerOrderReconciliation?locationId={locationId}&vendorId={vendorId}
Returns the supplier's order lines combined with grower order lines matched on sales order reference and line numbers.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| locationId |
Location ID. |
string |
Required |
| vendorId |
Vendor ID. |
string |
Required |
Body Parameters
Response Information
Resource Description
Returns the supplier's order lines combined with grower order lines matched on sales order reference and line numbers.
AgvGrowerOrderReconciliation| Name | Description | Type | Additional Information |
|---|---|---|---|
| Status |
0 = Success. 1 = An error occurred. 2 = An error occurred. 3 = Descriptive message, process was successful. |
string | |
| Message |
Informational message that corresponds to the Status returned. 0 - Message will be "OK". 1 - Detailed message returned to give user an indication of what went wrong. 2 - Less Detailed message returned that may not mean anything to the user but that the application might use to take a corrective action. 3 - Not an error but something the user might need to know. |
string | |
| ErrorList |
List of errors from the API |
Collection of string | |
| WarningList |
List of warnings from the API |
Collection of string | |
| Count |
Count of how many Products are returned |
string | |
| Data |
List of Dealer order rows |
Collection of GrowerOrderReconciliationRow |
Response Formats
application/json, text/json
{
"Status": "sample string 1",
"Message": "sample string 2",
"ErrorList": [
"sample string 1",
"sample string 2"
],
"WarningList": [
"sample string 1",
"sample string 2"
],
"Count": "2",
"Data": [
{
"GrowerOrderNumber": 1,
"LocationId": "sample string 2",
"LocationName": "sample string 3",
"OrderDate": "2026-04-12T10:55:19.6321011+00:00",
"CustomerId": "sample string 4",
"CustomerName": "sample string 5",
"GrowerOrderProductGtin": "sample string 6",
"GrowerOrderDepartmentId": "sample string 7",
"GrowerOrderProductId": "sample string 8",
"GrowerOrderProductName": "sample string 9",
"GrowerOrderQuantity": 10.1,
"GrowerOrderProductInventoryUnit": "sample string 11",
"GrowerOrderSupplierSalesOrderReference": "sample string 12",
"GrowerOrderSupplierLineItem": 13,
"SupplierGtin": "sample string 14",
"SupplierOrderNumber": "sample string 15",
"SupplierLineNumber": 16,
"SupplierCustomerName": "sample string 17",
"SupplierProductName": "sample string 18",
"SupplierOrderQuantity": 19.1,
"SupplierUnitOfMeasure": "sample string 20",
"DifferenceQuantity": 9.0,
"DifferenceType": 1
},
{
"GrowerOrderNumber": 1,
"LocationId": "sample string 2",
"LocationName": "sample string 3",
"OrderDate": "2026-04-12T10:55:19.6321011+00:00",
"CustomerId": "sample string 4",
"CustomerName": "sample string 5",
"GrowerOrderProductGtin": "sample string 6",
"GrowerOrderDepartmentId": "sample string 7",
"GrowerOrderProductId": "sample string 8",
"GrowerOrderProductName": "sample string 9",
"GrowerOrderQuantity": 10.1,
"GrowerOrderProductInventoryUnit": "sample string 11",
"GrowerOrderSupplierSalesOrderReference": "sample string 12",
"GrowerOrderSupplierLineItem": 13,
"SupplierGtin": "sample string 14",
"SupplierOrderNumber": "sample string 15",
"SupplierLineNumber": 16,
"SupplierCustomerName": "sample string 17",
"SupplierProductName": "sample string 18",
"SupplierOrderQuantity": 19.1,
"SupplierUnitOfMeasure": "sample string 20",
"DifferenceQuantity": 9.0,
"DifferenceType": 1
}
]
}