Norce Commerce Metadata v1.1 service (1.1)

The Metadata namespace has Entities and Operations concerned with the Application and similar context. It contains the Application entity, Stores and other data for lookups.

Download OpenAPI description
Languages
Servers
Playground

https://{slug}.api-se.playground.norce.tech/commerce/

Stage

https://{slug}.api-se.stage.norce.tech/commerce/

Production

https://{slug}.api-se.norce.tech/commerce/

Flags

Contains endpoints for viewing flags on the application. Any flags except product flags.

Operations

InfoTypes

Contains endpoints for viewing metadata for extended fields, specifically for Stores.

Operations

Location

Contains endpoints for looking up location information from the application.

Operations

Application

Contains endpoints for viewing metadata for application configurations.

Operations

Stores

Contains endpoints for viewing Store information and its metadata.

Operations

Schemas

IdValue

An Entity used where Id and Value is needed. Mostly used for lookup data.

Idinteger or null(int32)

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.

Valuestring or null

The Value of the Entity.

Codestring or null

The Code of the Entity, if existing. Use this value when hard coding is required.

{ "Id": 0, "Value": "string", "Code": "string" }

Location

This entity defines a location. If StoreId and StoreCode are both null, then WarehouseId and LocationId are not null and vice versa. All properties can have values if the Store is fetched from Norce Commerce. The information can be used when specifying Store/Warehouse/Location in some API-methods.

StoreIdinteger or null(int32)

This is the internal Norce ID.

StoreCodestring or null

This is a code used to map Store from an external system.

WarehouseIdinteger or null(int32)

This is the internal Norce ID.

LocationIdIdinteger or null(int32)

This is the internal Norce ID.

{ "StoreId": 0, "StoreCode": "string", "WarehouseId": 0, "LocationIdId": 0 }

LocationInfo

LocationInfo aggregates Locations for a zipcode in a country. Available locations are Delivery, Pickup and Payment.

CountryCodestring or null

This is country code for the location.

ZipCodestring or null

This is zip code for the location.

Deliveryobject or null

This entity defines a location. If StoreId and StoreCode are both null, then WarehouseId and LocationId are not null and vice versa. All properties can have values if the Store is fetched from Norce Commerce. The information can be used when specifying Store/Warehouse/Location in some API-methods.

Pickupobject or null

This entity defines a location. If StoreId and StoreCode are both null, then WarehouseId and LocationId are not null and vice versa. All properties can have values if the Store is fetched from Norce Commerce. The information can be used when specifying Store/Warehouse/Location in some API-methods.

Paymentobject or null

This entity defines a location. If StoreId and StoreCode are both null, then WarehouseId and LocationId are not null and vice versa. All properties can have values if the Store is fetched from Norce Commerce. The information can be used when specifying Store/Warehouse/Location in some API-methods.

{ "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 } }