# List store info Lists StoreInfo as a PagedList. This will list info for all Stores. Endpoint: GET /ApplicationService.svc/rest/ListStoreInfo Version: 1.1 ## Query parameters: - `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 StoreInfo 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.Info` (array) Contains a list of id-value pairs specific to the client for this store. Use ApplicationService.ListStoreInfoTypes(string) for id lookup. - `Items.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.Info.Value` (string) The Value of the Entity. MaxLength: max. - `Items.Info.Code` (string) The Code of the Entity, if existing. Use this value when hard coding is required. MaxLength: 255.