# List store items Lists StoreItems as a PagedList. Endpoint: GET /ApplicationService.svc/rest/ListStoreItems Version: 1.1 ## Query parameters: - `partNo` (string) If supplied, the returned StoreItem will have information about onHand. - `longitude` (string) Longitude for current position. StoreItems will calculate the Distance if supplied together with latitude. Format: decimal. - `latitude` (string) Latitude for current position. StoreItems will calculate the Distance if supplied together with longitude. Format: decimal. - `pageNo` (string) Page numbers start with 1. Default is 1. If you specify a pageNo outside the range of items, an empty list will be returned. PageSize is mandatory for pageNo to work. - `pageSize` (string) Number of items to display per page. Mandatory if using pageNo. - `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): - `ItemCount` (integer) The total item count. Can be used to manage paging. This will always be the total number of available items, regardless of paging. Use PageSize to calculate number of pages. - `Items` (array) Items contains the current list of StoreItems for the current page if paging is used. Otherwise all items will be in the list. - `Items.Id` (integer) The internal Id of the Store. - `Items.Name` (string) The Name of the Store. MaxLength: 50. - `Items.Address` (string) The Address of the Store. MaxLength: 100. - `Items.PostalAddress` (string) The PostalAddress of the Store. Zip and City. MaxLength: 100. - `Items.OnHandValue` (number,null) Obsolete! - Use OnHand - `Items.IncomingValue` (number,null) Obsolete! - Use OnHand - `Items.NextDeliveryDate` (string,null) Obsolete! - Use OnHand - `Items.Distance` (number,null) Used when fetching Stores and we have a specified current location from which to calculate a distance to the Store. - `Items.Type` (string) The Type of the Store. Taken from Storm's Division.GroupName. MaxLength: 50. - `Items.SubType` (string) The SubType of the Store. Taken from Storm's Division.SubGroupName. MaxLength: 50. - `Items.Code` (string) The external code. Usually the id in the erp system. MaxLength: 50. - `Items.OnHand` (object) - `Items.OnHand.Value` (number) The aggregated value from all warehouses and locations in the current context (Web, Supplier or Store). - `Items.OnHand.IncomingValue` (number) The incoming quantity on the next delivery. - `Items.OnHand.NextDeliveryDate` (string,null) The next delivery data from supplier to client warehouse. - `Items.OnHand.LeadtimeDayCount` (integer,null) The number of days it takes to ship from the supplier. - `Items.OnHand.LastChecked` (string,null) When onHand info was last checked. Null if never. - `Items.OnHand.IsActive` (boolean) Indicate if the product is stocked in a store. - `Items.OnHand.IsReturnable` (boolean) Indicate if the product is returnable in a store. - `Items.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. - `Items.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. - `Items.OnHand.Info.Value` (string) The Value of the Entity. MaxLength: max. - `Items.OnHand.Info.Code` (string) The Code of the Entity, if existing. Use this value when hard coding is required. MaxLength: 255. - `Items.OnHandDemo` (object) - `Items.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.