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=3d6a827f-f546-406e-9234-d123b71166bb
This is an example of the response JSON. Results will vary depending on your data.
{
"Key": [
{
"OrderId": "82b30c22-d5a4-4d3f-ba51-541923b57a0e",
"NumOrderId": 2,
"ReceivedDate": "2023-01-10T13:49:54.4805223+00:00",
"ProcessDate": "2023-01-10T13:49:54.4805223+00:00",
"Source": "sample string 5",
"CustomerName": "sample string 6",
"NumProducts": 7
}
],
"Value": "sample string 1"
}