Returns low fidelity view of open orders. The data is generally useful for very basic view or counters of what is in the open orders. Useful for finding orders quickly as it returns all scannable fields of the order and order items such as order ids, skus, barcodes etc.
Name | Type | Description |
---|---|---|
request | GetOrdersLowFidelityRequest |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/OpenOrders/GetOrdersLowFidelity
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
request={
"LocationId": "2e84310a-a8ce-4b1c-b252-099d7761fbd2"
}
This is an example of the response JSON. Results will vary depending on your data.
{
"Orders": [
{
"Items": [
{
"CompositeChild": [
{
"ProductIdentifiers": [
{
"Type": "sample string 1",
"Value": "sample string 2",
"Site": "sample string 3"
}
],
"StockItemId": "2eb628ef-9cbd-48a7-8067-2137784017a2",
"SKU": "sample string 2",
"BarcodeNumber": "sample string 3",
"ItemTitle": "sample string 4",
"Quantity": 5
}
],
"ProductIdentifiers": [
{
}
],
"ContainsComposites": true,
"StockItemId": "5af71378-9702-41a3-b7fe-4390209de237",
"SKU": "sample string 2",
"BarcodeNumber": "sample string 3",
"ItemTitle": "sample string 4",
"Quantity": 5
}
],
"OrderId": 1,
"pkOrderID": "baa12dc7-5c9f-4e34-9840-0f0315ac4ad9",
"Status": 3,
"ReferenceNum": "sample string 4",
"ExternalReference": "sample string 5",
"PostalTrackingNumber": "sample string 6",
"OrderDate": "2023-01-10T13:49:54.0959613+00:00",
"DispatchBy": "2023-01-10T13:49:54.0959613+00:00"
}
]
}