Used to get product identifiers for a stock item
Name | Type | Description |
---|---|---|
request | GetProductIdentifiersByStockItemIdRequest | Object with StockItemId |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Inventory/GetProductIdentifiersByStockItemId
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={
"StockItemId": "de3d12b5-0f04-4029-b1cc-392907f27813"
}
This is an example of the response JSON. Results will vary depending on your data.
{
"ProductIdentifiers": [
{
"PkId": 1,
"StockItemId": "409369ea-52d7-4b78-ad2a-6afabd940c5a",
"Type": 0,
"Site": "sample string 3",
"Value": "sample string 4",
"ModifiedDate": "2023-01-10T13:49:55.2766109+00:00",
"ModifiedUserName": "sample string 6"
}
]
}