The Norce Management API lets you manage configurations and metadata on a client.
The Norce Management API lets you manage configurations and metadata on a client.
https://{slug}.api-se.playground.norce.tech/commerce/
https://{slug}.api-se.stage.norce.tech/commerce/
https://{slug}.api-se.norce.tech/commerce/
VariantType model (called simply parametrics in the admin interface when adding them to a variant group), represents types of variants that can be associated with products to define their variant structure. Each variant type can have culture-specific names and descriptions.
The description of the variant type in the current culture
Indicates whether the description is inherited from the default culture
The unique code identifier for the variant type, should be same as parametric code to keep consistency.
The description of the parametric associated with this variant type
The type classification of the variant type. Valid values: text, html, int, decimal, date, boolean, list, multiple.
{ "Id": 0, "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "Code": "string", "SortOrder": 0, "IsActive": true, "ParametricId": 0, "ParametricName": "string", "ParametricDescription": "string", "Uom": "string", "Type": "string", "Changed": "string", "ChangedBy": "string", "Cultures": [ { … } ] }
WarehouseLocation model, represents a specific location within a warehouse. Each location can have unique attributes such as code, name, and whether it is the standard location for the warehouse. It can also override lead times and stock calculation settings from the warehouse.
Indicates whether this is the standard location for the warehouse, only one location can be marked as standard per warehouse.
The standard lead time commonly in days for this warehouse location, overrides warehouse setting if specified
Indicates whether this location is included in stock calculations. Set to false if the location is used for display only and should not affect business logic.
{ "Id": 0, "Code": "string", "Name": "string", "IsStandard": true, "StandardLeadTimeDayCount": 0, "IsIncludedInStockCalculation": true, "PrimaryPriceListId": 0, "PrimaryPriceListName": "string", "Changed": "string", "ChangedBy": "string" }