# Upserts Item Store Configs Endpoint: PATCH /items/store-configs Version: v3.0: 3.26.2.2 Security: Auth API User Token ## Request fields (application/json-patch+json): - `importData` (array,null) Values to be used for setting the imports - `importData.itemSku` (string,null) SKU of the ItemThis must be an item that already exists in the database, is not a removed status. This can be found by opening up Yellow Dog Inventory and looking at the sku column in the Inventory Items screen. - `importData.storeCode` (string,null) Code of the storeThis must be a store that already exists in the database and is not deleted - `importData.isAvailable` (boolean,null) marked true when the item is available for the store - `importData.bin` (string,null) free text field for identifying where in the store this item can be found - `importData.reorderPoint` (number,null) Used to identify when a store should reorder a item based on the available onhand.When the Stores current onhand is equal to or less than this set amount, views and lists that show items that need to be ordered will include this.Currently, this updates the Reorder Point of the specified SKU ONLY and does NOT keep child and parent Reorder Points in sync. If you want a child and a parent's Reorder Point updated, you must include those related SKUs as separate lines in the file with their own specific Reorder Point.See parLevel documentation for breakdown of usage scenarios. - `importData.parLevel` (number,null) The target onhand amount to have after a purchase for this store.This is used in conjunction with the reorderPoint value. This is the quantity that a recommended purchase amount is based on.Example Scenarios:1. Item A has a current Onhand of 2, a reorder point of 4, and a par level of 7. The recommended purchase amount used by the system would be 5.2. Item B has a current Onhand of 4, a reorder point of 4, and a par level of 7. The recommended purchase amount used by the system would be 3.3. Item C has a current Onhand of 5, a reorder point of 4, and a par level of 7. This item would not be recommended for purchase since the current onhand is greater than the reorder point.Par Level must be equal to or higher than the reorderPoint.Currently, this updates the Par Level of the specified SKU ONLY and does NOT keep child and parent Par Levels in sync. If you want a child and a parent's Par Level updated, you must include those related SKUs as separate lines in the file with their own specific Par Level. - `importData.isNoCount` (boolean,null) In this store this item will never hold an onhand value. Changing this setting will cause reports looking in the past to change. - `importData.isNonRestock` (boolean,null) When set to true, the item will not appear in auto-restocks for the store. This is a Stands Workflow dependent field. - `importData.maxCapacity` (number,null) The maximum capacity of an item at this store. This is used to try to only allow a maximum onhand to be available in a store.Max Capacity is required to be equal to or higher than the parLevel. However, a Max Capacity of 0 is treated as an unlimited amount that can be stored in the store. - `importData.automaticParAlgorithm` (string,null) - `importData.tariffCode` (string,null) Mostly used with E-Commerce integrations when there are additional taxes relating to sales outside of the country ## Response 500 fields (text/plain): - `message` (string,null) - `errors` (array,null) - `errors.extensions` (string,null) ## Response 403 fields ## Response 429 fields