Try to find an item by SKU of SpplierCode
Name | Type | Description |
---|---|---|
request | FindStockItemRequest |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/PurchaseOrder/FindStockItem
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={
"Codes": [
"sample string 1"
]
}
This is an example of the response JSON. Results will vary depending on your data.
{
"Items": [
{
"pkStockItemId": "45433f31-85ad-457d-adbe-fc23c8161b35",
"ItemNumber": "sample string 2",
"ItemTitle": "sample string 3",
"InventoryTrackingType": 4,
"TaxRate": 5.0,
"PurchasePrice": 6.0,
"KnownPurchasePrice": 1.0,
"SupplierCode": "sample string 7",
"SupplierBarcode": "sample string 8",
"fkSupplierId": "707e4466-e971-4540-ad21-b1e6a1fad81f",
"SupplierMinOrderQty": 1,
"SupplierPackSize": 1,
"ContainsComposites": true,
"StockItemIntId": 1
}
]
}