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

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

List warehouse locations for a specific warehouse

Request

Get a list of all warehouse locations for a specific warehouse

Path
warehouseIdinteger(int32)required

Warehouse id

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

Responses

Returns the list of warehouse locations

Bodyapplication/jsonArray [
Idinteger(int32)

The warehouse location identifier

Codestring or null

The warehouse location code, must be unique within the warehouse

Namestring or null[ 0 .. 50 ] characters

The name of the warehouse location

IsStandardboolean

Indicates whether this is the standard location for the warehouse, only one location can be marked as standard per warehouse.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time commonly in days for this warehouse location, overrides warehouse setting if specified

IsIncludedInStockCalculationboolean

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.

PrimaryPriceListIdinteger(int32)

The primary price list identifier for this warehouse location

PrimaryPriceListNamestring or null

The name of the primary price list for this warehouse location

Changedstring or null

The date and time when the warehouse location was last changed

ChangedBystring or null

Fullname or Systemname of the user who last changed the warehouse location

]
Response
application/json
[ { "Id": 0, "Code": "string", "Name": "string", "IsStandard": true, "StandardLeadTimeDayCount": 0, "IsIncludedInStockCalculation": true, "PrimaryPriceListId": 0, "PrimaryPriceListName": "string", "Changed": "string", "ChangedBy": "string" } ]

Update warehouse locations for a specific warehouse

Request

Update a list of warehouse locations for a specific warehouse

Path
warehouseIdinteger(int32)required

Warehouse id

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

List of warehouse locations

Array [
Idinteger(int32)

The warehouse location identifier

Codestring or null

The warehouse location code, must be unique within the warehouse

Namestring or null[ 0 .. 50 ] characters

The name of the warehouse location

IsStandardboolean

Indicates whether this is the standard location for the warehouse, only one location can be marked as standard per warehouse.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time commonly in days for this warehouse location, overrides warehouse setting if specified

IsIncludedInStockCalculationboolean

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.

PrimaryPriceListIdinteger(int32)

The primary price list identifier for this warehouse location

PrimaryPriceListNamestring or null

The name of the primary price list for this warehouse location

Changedstring or null

The date and time when the warehouse location was last changed

ChangedBystring or null

Fullname or Systemname of the user who last changed the warehouse location

]
curl -i -X PUT \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse/{warehouseId}/location' \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '[
    {
      "Id": 0,
      "Code": "string",
      "Name": "string",
      "IsStandard": true,
      "StandardLeadTimeDayCount": 0,
      "IsIncludedInStockCalculation": true,
      "PrimaryPriceListId": 0,
      "PrimaryPriceListName": "string",
      "Changed": "string",
      "ChangedBy": "string"
    }
  ]'

Responses

If the warehouse locations were successfully updated

Response
No content

Product Warehouse

Operations