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

Get application culture

Request

Get a specific culture for the application

Path
cultureCodestringrequired

The culture code of the culture, e.g. "en-US"

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/application/culture/{cultureCode}' \
  -H 'account-id: 0' \
  -H 'application-id: 0'

Responses

Bodyapplication/json
CultureCodestring[ 1 .. 16 ] charactersrequired

The Code of the culture. Two letter or five letter codes. MaxLength: 16., e.g. "en-US", or "sv-SE"

IsPrimaryboolean

Primary application culture. Must be set for only one of the active cultures. Can be updated on an existing ApplicationCulture.

IsActiveboolean

If false, the culture is soft deleted from the application

Namestring or null<= 50 characters

Culture name, cannot be updated, for display purposes only, maxlength 50

Changedstring or null

The date and time the ApplicationCulture was last changed, in the application's timezone format

ChangedBystring or null

Fullname or Systemname of the user who last changed the ApplicationCulture, null if never changed

Response
application/json
{ "CultureCode": "string", "IsPrimary": true, "IsActive": true, "Name": "string", "Changed": "string", "ChangedBy": "string" }

Delete application culture

Request

(soft) Delete a culture from the application

Path
cultureCodestringrequired

The culture code of the culture to delete, e.g. "en-US"

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

curl -i -X DELETE \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture/{cultureCode}' \
  -H 'account-id: 0' \
  -H 'application-id: 0'

Responses

Bodyapplication/json
string
Response
application/json
"string"

Update application culture

Request

Update an existing culture in the application

Path
cultureCodestringrequired

The culture code of the culture to update, e.g. "en-US"

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

UpdateApplicationCulture model, only IsPrimary and IsActive can be changed

CultureCodestring[ 1 .. 16 ] charactersrequired

The Code of the culture. Two letter or five letter codes. MaxLength: 16., e.g. "en-US", or "sv-SE"

IsPrimaryboolean

Primary application culture. Must be set for only one of the active cultures. Can be updated on an existing ApplicationCulture.

IsActiveboolean

If false, the culture is soft deleted from the application

Namestring or null<= 50 characters

Culture name, cannot be updated, for display purposes only, maxlength 50

Changedstring or null

The date and time the ApplicationCulture was last changed, in the application's timezone format

ChangedBystring or null

Fullname or Systemname of the user who last changed the ApplicationCulture, null if never changed

curl -i -X PUT \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture/{cultureCode}' \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '{
    "CultureCode": "string",
    "IsPrimary": true,
    "IsActive": true,
    "Name": "string",
    "Changed": "string",
    "ChangedBy": "string"
  }'

Responses

Bodyapplication/json
integer(int32)
Response
application/json
0

List application cultures

Request

List all cultures added to the application

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/application/culture \
  -H 'account-id: 0' \
  -H 'application-id: 0'

Responses

Returns the list of application cultures, if any exists

Bodyapplication/jsonArray [
CultureCodestring[ 1 .. 16 ] charactersrequired

The Code of the culture. Two letter or five letter codes. MaxLength: 16., e.g. "en-US", or "sv-SE"

IsPrimaryboolean

Primary application culture. Must be set for only one of the active cultures. Can be updated on an existing ApplicationCulture.

IsActiveboolean

If false, the culture is soft deleted from the application

Namestring or null<= 50 characters

Culture name, cannot be updated, for display purposes only, maxlength 50

Changedstring or null

The date and time the ApplicationCulture was last changed, in the application's timezone format

ChangedBystring or null

Fullname or Systemname of the user who last changed the ApplicationCulture, null if never changed

]
Response
application/json
[ { "CultureCode": "string", "IsPrimary": true, "IsActive": true, "Name": "string", "Changed": "string", "ChangedBy": "string" } ]

Insert application culture

Request

Add a new culture to the application

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

UpdateApplicationCulture model, only cultureCode and isPrimary required, If IsPrimary is set to true the last primary culture will be unset

CultureCodestring[ 1 .. 16 ] charactersrequired

The Code of the culture. Two letter or five letter codes. MaxLength: 16., e.g. "en-US", or "sv-SE"

IsPrimaryboolean

Primary application culture. Must be set for only one of the active cultures. Can be updated on an existing ApplicationCulture.

IsActiveboolean

If false, the culture is soft deleted from the application

Namestring or null<= 50 characters

Culture name, cannot be updated, for display purposes only, maxlength 50

Changedstring or null

The date and time the ApplicationCulture was last changed, in the application's timezone format

ChangedBystring or null

Fullname or Systemname of the user who last changed the ApplicationCulture, null if never changed

curl -i -X POST \
  https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '{
    "CultureCode": "string",
    "IsPrimary": true,
    "IsActive": true,
    "Name": "string",
    "Changed": "string",
    "ChangedBy": "string"
  }'

Responses

Bodyapplication/json
string
Response
application/json
"string"

Update multiple application cultures

Request

Update multiple existing cultures in the application

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

List of UpdateApplicationCulture models, only IsPrimary and IsActive can be changed

Array [
CultureCodestring[ 1 .. 16 ] charactersrequired

The Code of the culture. Two letter or five letter codes. MaxLength: 16., e.g. "en-US", or "sv-SE"

IsPrimaryboolean

Primary application culture. Must be set for only one of the active cultures. Can be updated on an existing ApplicationCulture.

IsActiveboolean

If false, the culture is soft deleted from the application

]
curl -i -X PUT \
  https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture/list \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '[
    {
      "CultureCode": "string",
      "IsPrimary": true,
      "IsActive": true
    }
  ]'

Responses

Bodyapplication/jsonArray [
integer(int32)
]
Response
application/json
[ 0 ]

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

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