Use this call to get stockitem Extended Properties
Name | Type | Description |
---|---|---|
inventoryItemId | Guid | stockitem id |
propertyParams | GetExtendedPropertyFilter | Optional parameters to look for specific PropertyName and PropertyType |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Inventory/GetInventoryItemExtendedProperties
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.
inventoryItemId=4ed2c7c5-73c6-4d02-833e-600c386d8cd0&propertyParams={
"PropertyName": "sample string 1",
"PropertyType": "sample string 2"
}
This is an example of the response JSON. Results will vary depending on your data.
[
{
"pkRowId": "3cb037df-b74e-4a67-99ff-e8b588fc5917",
"fkStockItemId": "cdbf1e23-3d9f-4dc6-9412-8d5556c062c7",
"ProperyName": "sample string 3",
"PropertyValue": "sample string 4",
"PropertyType": "sample string 5"
}
]