Get orders by order item barcode
Name | Type | Description |
---|---|---|
productBarcode | String | Item barcode |
filters | FieldsFilter | Filters to apply |
locationId | Nullable<Guid> | User location |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Orders/GetOpenOrdersByItemBarcode
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.
productBarcode=sample string 1&locationId=3197afe1-9824-4ee0-b200-02423c310713
This is an example of the response JSON. Results will vary depending on your data.
{
"Key": [
{
"OrderId": "536a238e-ae9b-4301-bf69-2d13aab26944",
"NumOrderId": 2,
"ReceivedDate": "2022-08-03T16:02:33.9248702+01:00",
"ProcessDate": "2022-08-03T16:02:33.9248702+01:00",
"Source": "sample string 5",
"CustomerName": "sample string 6",
"NumProducts": 7
}
],
"Value": "sample string 1"
}