# Get store Gets a Store by Id. Should be used to display details about a Store or when just data for a single Store is needed. Returns null if the Store does not exist. Endpoint: GET /ApplicationService.svc/rest/GetStore Version: 1.1 ## Query parameters: - `id` (integer, required) The internal Id of the Store to fetch. - `longitude` (string) Longitude for current position. Store will calculate the Distance if supplied together with latitude. Format: decimal. - `latitude` (string) Latitude for current position. Store will calculate the Distance if supplied together with longitude. Format: decimal. - `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. - `Phone` (string) The PhoneNumber to the Store. MaxLength: 50. - `Fax` (string) The FaxNumber to the Store. MaxLength: 50. - `OpeningWeekdays` (string) Defines the opening hours for the Store during week days. MaxLength: 255. - `OpeningSaturdays` (string) Defines the opening hours for the Store during on Saturdays. MaxLength: 255. - `OpeningSundays` (string) Defines the opening hours for the Store during on Sundays. MaxLength: 255. - `Longitude` (number,null) The longitude part of the location of the Store. Can be used to calculate distances to the Store. - `Latitude` (number,null) The latitude part of the location of the Store. Can be used to calculate distances to the Store. - `Distance` (number,null) Used when fetching Stores and we have a specified current location from which to calculate a distance to the Store. - `Key` (string) The system wide unique Key for 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. - `Info` (array) Contains a list of id-value pairs specific to the client for this Store. Use ApplicationService.ListStoreInfoTypes(string) for id lookup. - `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. - `Info.Value` (string) The Value of the Entity. MaxLength: max. - `Info.Code` (string) The Code of the Entity, if existing. Use this value when hard coding is required. MaxLength: 255. - `Pricelists` (object) - `Pricelists.Ids` (array) A list of priceList ids. - `Pricelists.Default` (integer) The default priceList id from the list. - `Code` (string) The external code. Usually the id in the erp system. MaxLength: 50. - `Description` (string) The Description of the Store. MaxLength: max. - `ImageKey` (string,null) A unique id for the image at our image server. Url for images are formed like http://[client specific CDN]/{ImageKey}. Preset, height and width can be sent as parameters. - `UniqueName` (string) A unique name that can be used in Urls and to get this entity. GetStore and GetStoreByUniqueName gets the same Store. MaxLength: 100.