# Get store item Gets a StoreItem by Id. Should be used to display details about a StoreItem or when just data for a single StoreItem is needed. Returns null if the StoreItem does not exist. Endpoint: GET /ApplicationService.svc/rest/GetStoreItem Version: 1.1 ## Query parameters: - `id` (integer, required) The internal Id of the Store to fetch. - `partNo` (string) If supplied, the returned StoreItem will have information about onHand. - `cultureCode` (string) Specifies in which language to display culture specific information. If none is supplied, value is resolved from Application. ## Response 200 fields (application/json): - `Id` (integer) The internal Id of the Store. - `Name` (string) The Name of the Store. MaxLength: 50. - `Address` (string) The Address of the Store. MaxLength: 100. - `PostalAddress` (string) The PostalAddress of the Store. Zip and City. MaxLength: 100. - `OnHandValue` (number,null) Obsolete! - Use OnHand - `IncomingValue` (number,null) Obsolete! - Use OnHand - `NextDeliveryDate` (string,null) Obsolete! - Use OnHand - `Distance` (number,null) Used when fetching Stores and we have a specified current location from which to calculate a distance to the Store. - `Type` (string) The Type of the Store. Taken from Storm's Division.GroupName. MaxLength: 50. - `SubType` (string) The SubType of the Store. Taken from Storm's Division.SubGroupName. MaxLength: 50. - `Code` (string) The external code. Usually the id in the erp system. MaxLength: 50. - `OnHand` (object) - `OnHand.Value` (number) The aggregated value from all warehouses and locations in the current context (Web, Supplier or Store). - `OnHand.IncomingValue` (number) The incoming quantity on the next delivery. - `OnHand.NextDeliveryDate` (string,null) The next delivery data from supplier to client warehouse. - `OnHand.LeadtimeDayCount` (integer,null) The number of days it takes to ship from the supplier. - `OnHand.LastChecked` (string,null) When onHand info was last checked. Null if never. - `OnHand.IsActive` (boolean) Indicate if the product is stocked in a store. - `OnHand.IsReturnable` (boolean) Indicate if the product is returnable in a store. - `OnHand.Info` (array) List of IdValues for the OnHand data for this sku warehouse location combination. This will always be null unless fetched with any of the ProductOnHand methods. - `OnHand.Info.Id` (integer) The internal Id of the Entity. This Id might be different in different tiers such as Stage and Production. Use Code if hard coding is required. - `OnHand.Info.Value` (string) The Value of the Entity. MaxLength: max. - `OnHand.Info.Code` (string) The Code of the Entity, if existing. Use this value when hard coding is required. MaxLength: 255. - `OnHandDemo` (object) - `UniqueName` (string) A unique name that can be used in Urls and to get this entity. GetStoreItem and GetStoreItemByUniqueName gets the same StoreItem. MaxLength: 100.