Management API (v1)

The Norce Management API lets you manage configurations and metadata on a client.

Download OpenAPI description
Languages
Servers

https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/

Schemas

Settings ApplicationCountry

Operations

Settings ApplicationCulture

Operations

Settings ApplicationCurrency

Operations

Settings ApplicationSalesArea

Operations

Settings Application

Operations

Category

Operations

CategoryParametric

Operations

Settings ClientAssortment

Operations

Settings ClientCurrency

Operations

Settings ClientSalesArea

Operations

Customer FlagGroup

Operations

Customer Flag

Operations

Customer InfoType

Operations

Product Family

Operations

Product File

Operations

Product Manufacturer

Operations

Parametric Group

Operations

Parametric List

Operations

Parametric Multiple

Operations

List parametric multiple values

Request

Get a list of all parametric multiple values for a specific parametric attribute

Path
parametricIdinteger(int32)required
Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

curl -i -X GET \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/parametric/{parametricId}/multiple' \
  -H 'account-id: 0' \
  -H 'application-id: 0'

Responses

Returns the list of parametric multiple values, if any exists

Bodyapplication/jsonArray [
Idinteger(int32)

Internal identifier for the parametric multiple item. Client-specific.

Example: 1
ParametricIdinteger(int32)required

The identifier of the parametric this multiple item belongs to.

Example: 6
Valuestring or null[ 0 .. 255 ] characters

The display value for the parametric multiple item in a specific language.

Example: "Do not dry clean"
DefaultValuestring or null[ 0 .. 255 ] characters

The display value for the parametric multiple item in the default language.

Example: "Do not dry clean"
IsValueInheritedboolean

If true, the specific language doesn't have its own value and instead inherits from the default value.

Descriptionstring or null

A longer description for the parametric multiple item in a specific language. No size limit.

DefaultDescriptionstring or null

A longer description for the parametric multiple item in the default language. No size limit.

IsDescriptionInheritedboolean

If true, the description is inherited from the default language rather than being its own text.

SortOrderinteger or null(int32)

Sort order for displaying the parametric multiple item in lists. If null, no specific order is defined.

Codestring or null[ 0 .. 50 ] characters

Unique code identifier for the parametric multiple item.

Example: "donotdryclean"
ImageKeystring or null(guid)

Unique blob identifier for an associated image.

ImageUrlstring or null[ 0 .. 255 ] characters

Deprecated, URL path to an associated image for the parametric multiple item.

IsActivebooleanrequired

False if the parametric multiple item is soft deleted, removes it from selection lists but easily reactivatable.

Example: true
Changedstring or null

The date and time when the parametric multiple item was last changed.

Example: "03/05/2024 14:07"
ChangedBystring or null

The name of the user who last changed the parametric multiple item, null if never changed.

CulturesArray of objects(ParametricMultipleCultureModel)

List of all culture-specific text fields for the parametric multiple item.

Example: [{"CultureCode":"en-GB","Value":"Do not dry clean","IsValueInherited":false,"Description":"","IsDescriptionInherited":false,"IsTranslated":true},{"CultureCode":"sv-SE","Value":null,"IsValueInherited":true,"Description":null,"IsDescriptionInherited":true,"IsTranslated":false}]
]
Response
application/json
[ { "Id": 1, "ParametricId": 6, "Value": "Do not dry clean", "DefaultValue": "Do not dry clean", "IsValueInherited": false, "Description": "", "DefaultDescription": "", "IsDescriptionInherited": false, "SortOrder": null, "Code": "donotdryclean", "ImageKey": null, "ImageUrl": "", "IsActive": true, "Changed": "03/05/2024 14:07", "ChangedBy": null, "Cultures": [] } ]

Add or Update parametric multiple values

Request

Update the complete list of parametric multiple values for a specific parametric attribute

Path
parametricIdinteger(int32)required

Parametric attribute id

Query
useSortOrderboolean or null

Optional flag to indicate if the sort order from the provided list should be used

Default false
Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

A complete list of parametric multiple values to set, existing values will be replaced. New values are allowed.

Array [
Idinteger(int32)

Internal identifier for the parametric multiple item. Client-specific.

Example: 1
ParametricIdinteger(int32)required

The identifier of the parametric this multiple item belongs to.

Example: 6
Valuestring or null[ 0 .. 255 ] characters

The display value for the parametric multiple item in a specific language.

Example: "Do not dry clean"
DefaultValuestring or null[ 0 .. 255 ] characters

The display value for the parametric multiple item in the default language.

Example: "Do not dry clean"
IsValueInheritedboolean

If true, the specific language doesn't have its own value and instead inherits from the default value.

Descriptionstring or null

A longer description for the parametric multiple item in a specific language. No size limit.

DefaultDescriptionstring or null

A longer description for the parametric multiple item in the default language. No size limit.

IsDescriptionInheritedboolean

If true, the description is inherited from the default language rather than being its own text.

SortOrderinteger or null(int32)

Sort order for displaying the parametric multiple item in lists. If null, no specific order is defined.

Codestring or null[ 0 .. 50 ] characters

Unique code identifier for the parametric multiple item.

Example: "donotdryclean"
ImageKeystring or null(guid)

Unique blob identifier for an associated image.

ImageUrlstring or null[ 0 .. 255 ] characters

Deprecated, URL path to an associated image for the parametric multiple item.

IsActivebooleanrequired

False if the parametric multiple item is soft deleted, removes it from selection lists but easily reactivatable.

Example: true
Changedstring or null

The date and time when the parametric multiple item was last changed.

Example: "03/05/2024 14:07"
ChangedBystring or null

The name of the user who last changed the parametric multiple item, null if never changed.

CulturesArray of objects(ParametricMultipleCultureModel)

List of all culture-specific text fields for the parametric multiple item.

Example: [{"CultureCode":"en-GB","Value":"Do not dry clean","IsValueInherited":false,"Description":"","IsDescriptionInherited":false,"IsTranslated":true},{"CultureCode":"sv-SE","Value":null,"IsValueInherited":true,"Description":null,"IsDescriptionInherited":true,"IsTranslated":false}]
]
curl -i -X PUT \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/parametric/{parametricId}/multiple' \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '[
    {
      "Id": 1,
      "ParametricId": 6,
      "Value": "Do not dry clean",
      "DefaultValue": "Do not dry clean",
      "IsValueInherited": false,
      "Description": "",
      "DefaultDescription": "",
      "IsDescriptionInherited": false,
      "SortOrder": null,
      "Code": "donotdryclean",
      "ImageKey": null,
      "ImageUrl": "",
      "IsActive": true,
      "Changed": "03/05/2024 14:07",
      "ChangedBy": null,
      "Cultures": [
        {
          "CultureCode": "en-GB",
          "Value": "Do not dry clean",
          "IsValueInherited": false,
          "Description": "",
          "IsDescriptionInherited": false,
          "IsTranslated": true
        },
        {
          "CultureCode": "sv-SE",
          "Value": null,
          "IsValueInherited": true,
          "Description": null,
          "IsDescriptionInherited": true,
          "IsTranslated": false
        }
      ]
    }
  ]'

Responses

If the parametric multiple values were successfully updated

Response
No content

Parametric

Operations

PriceList Population

Operations

PriceList Pricing

Operations

PriceList

Operations

PriceList SupplierPriceList

Operations

PriceList Warehouse

Operations

Product FlagGroup

Operations

Product Flag

Operations

Product InfoType

Operations

Product Type

Operations

Promotion

Operations

Product RelationType

Operations

PriceList RoundingRule

Operations

Shopping InfoType

Operations

Store Application

Operations

Store PriceList

Operations

Store

Operations

Store Warehouse

Operations

Supplier PriceList

Operations

Supplier PriceListWarehouse

Operations

Supplier

Operations

Supplier Warehouse

Operations

Supplier WarehouseLocation

Operations

Product VariantGroup

Operations

Product WarehouseLocation

Operations

Product Warehouse

Operations