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

Get application currency

Request

Get a specific currency for the application

Path
idinteger(int32)required

The system wide unique internal Norce Id of the currency

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

Responses

Bodyapplication/json
Idinteger(int32)required

The system wide unique internal Norce Id of the currency

Codestring or null

The ISO Currency Code, three letter code, e.g. "USD", "EUR", "SEK"

Namestring or null<= 50 characters

Currency name, cannot be updated, for display purposes only

IsActiveboolean

If false, the currency is soft deleted from the application

IsPrimaryboolean

Primary application currency. Must be set for only one of the active currencies. Can be updated on an existing ApplicationCurrency.

ExchangeRatenumber(decimal)

Exchange rate for the currency compared to the EUR. E.g. if this currency is SEK, and 1 SEK = 0.091 EUR, the exchange rate is 0.0910000000, not editable directly from here. Use the exchange rate management features.

Changedstring or null

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

ChangedBystring or null

The name of the user who last changed the ApplicationCurrency, null if never changed

Response
application/json
{ "Id": 0, "Code": "string", "Name": "string", "IsActive": true, "IsPrimary": true, "ExchangeRate": 0, "Changed": "string", "ChangedBy": "string" }

Update application currency

Request

Update an existing currency in the application

Path
idinteger(int32)required

Currency id

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

UpdateApplicationCurrency model, only IsPrimary and IsActive can be changed

Idinteger(int32)required

The system wide unique internal Norce Id of the currency

Codestring or null

The ISO Currency Code, three letter code, e.g. "USD", "EUR", "SEK"

Namestring or null<= 50 characters

Currency name, cannot be updated, for display purposes only

IsActiveboolean

If false, the currency is soft deleted from the application

IsPrimaryboolean

Primary application currency. Must be set for only one of the active currencies. Can be updated on an existing ApplicationCurrency.

ExchangeRatenumber(decimal)

Exchange rate for the currency compared to the EUR. E.g. if this currency is SEK, and 1 SEK = 0.091 EUR, the exchange rate is 0.0910000000, not editable directly from here. Use the exchange rate management features.

Changedstring or null

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

ChangedBystring or null

The name of the user who last changed the ApplicationCurrency, null if never changed

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

Responses

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

Delete application currency

Request

(Soft)Delete a currency from the application

Path
idinteger(int32)required

Currency id

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

Responses

Response
No content

List application currencies

Request

List all currencies 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/currency \
  -H 'account-id: 0' \
  -H 'application-id: 0'

Responses

Returns the list of application currencies, if any exists

Bodyapplication/jsonArray [
Idinteger(int32)required

The system wide unique internal Norce Id of the currency

Codestring or null

The ISO Currency Code, three letter code, e.g. "USD", "EUR", "SEK"

Namestring or null<= 50 characters

Currency name, cannot be updated, for display purposes only

IsActiveboolean

If false, the currency is soft deleted from the application

IsPrimaryboolean

Primary application currency. Must be set for only one of the active currencies. Can be updated on an existing ApplicationCurrency.

ExchangeRatenumber(decimal)

Exchange rate for the currency compared to the EUR. E.g. if this currency is SEK, and 1 SEK = 0.091 EUR, the exchange rate is 0.0910000000, not editable directly from here. Use the exchange rate management features.

Changedstring or null

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

ChangedBystring or null

The name of the user who last changed the ApplicationCurrency, null if never changed

]
Response
application/json
[ { "Id": 0, "Code": "string", "Name": "string", "IsActive": true, "IsPrimary": true, "ExchangeRate": 0, "Changed": "string", "ChangedBy": "string" } ]

Insert application currency

Request

Add a new currency to the application

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

ApplicationCurrency model, only Id required, If IsPrimary is set to true the last primary currency will be unset

Idinteger(int32)required

The system wide unique internal Norce Id of the currency

Codestring or null

The ISO Currency Code, three letter code, e.g. "USD", "EUR", "SEK"

Namestring or null<= 50 characters

Currency name, cannot be updated, for display purposes only

IsActiveboolean

If false, the currency is soft deleted from the application

IsPrimaryboolean

Primary application currency. Must be set for only one of the active currencies. Can be updated on an existing ApplicationCurrency.

ExchangeRatenumber(decimal)

Exchange rate for the currency compared to the EUR. E.g. if this currency is SEK, and 1 SEK = 0.091 EUR, the exchange rate is 0.0910000000, not editable directly from here. Use the exchange rate management features.

Changedstring or null

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

ChangedBystring or null

The name of the user who last changed the ApplicationCurrency, null if never changed

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

Responses

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

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