Skip to content

Documentation ApplicationService (1.1)

The Applications namespace has Entities and Operations concerned with the Application as such. It contains the Application entity, Stores and other lookup data common to an Application.

Download OpenAPI description
Languages
Servers

https://customer-slug.api-se.norce.tech/commerce/metadata/1.1/

Operations
Operations
Operations
Operations

Request

Gets the LocationInfo for a given zip code. The mapping of zip codes to Locations is done in the StormAdmin if not implemented through integration. Returns null if the LocationInfo does not exist.

Query
countryCodestringrequired

The ISO 3166-1 alpha-2 is used. SE for Sweden.

zipstringrequired

The zip code to get a location for.

curl -i -X GET \
  'https://customer-slug.api-se.norce.tech/commerce/metadata/1.1/GetLocationInfoByZipCode?countryCode=string&zip=string'

Responses

Success

Body
CountryCodestring

This is country code for the location. MaxLength: 3.

ZipCodestring

This is zip code for the location. MaxLength: 50.

Deliveryobject(Location)(Location)
Pickupobject(Location)(Location)
Paymentobject(Location)(Location)
Response
{ "CountryCode": "string", "ZipCode": "string", "Delivery": { "StoreId": 0, "StoreCode": "string", "WarehouseId": 0, "LocationIdId": 0 }, "Pickup": { "StoreId": 0, "StoreCode": "string", "WarehouseId": 0, "LocationIdId": 0 }, "Payment": { "StoreId": 0, "StoreCode": "string", "WarehouseId": 0, "LocationIdId": 0 } }
Operations