Get store by unique name

Gets a Store by its unique url name. 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
uniqueName
required
string

The unique name 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/GetStoreByUniqueName
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"
}