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.

Request
query Parameters
id
required
integer <int32>

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.

Responses
200

Success

500

Internal Server Error

get/ApplicationService.svc/rest/GetStore
Response samples
{
  • "Id": 0,
  • "Name": "string",
  • "Address": "string",
  • "PostalAddress": "string",
  • "Phone": "string",
  • "Fax": "string",
  • "OpeningWeekdays": "string",
  • "OpeningSaturdays": "string",
  • "OpeningSundays": "string",
  • "Longitude": 0,
  • "Latitude": 0,
  • "Distance": 0,
  • "Key": "string",
  • "Type": "string",
  • "SubType": "string",
  • "Info": [
    ],
  • "Pricelists": {
    },
  • "Code": "string",
  • "Description": "string",
  • "ImageKey": "string",
  • "UniqueName": "string"
}