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

Get a supplier warehouse

Request

Get a specific supplier warehouse by its internal id

Path
supplierIdinteger(int32)required

Supplier id

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

Responses

Returns the SupplierWarehouse

Bodyapplication/json
Idinteger(int32)

The supplier warehouse identifier

SupplierIdinteger(int32)

The supplier identifier associated with this warehouse

Namestring or null

The name of the supplier warehouse

CostBlockinteger or null(int32)

The cost block identifier, deprecated property.

FreightCostnumber or null(decimal)

The freight cost associated with this supplier warehouse, deprecated property.

MinimumOrderValuenumber or null(decimal)

The minimum order value required for this supplier warehouse, deprecated property.

MinimumOrderValueCostnumber or null(decimal)

The cost associated with minimum order value requirements, deprecated property.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time usually in days for goods from this supplier warehouse

TransferMethodValuestring or null[ 0 .. 255 ] characters

The transfer method value for this supplier warehouse, deprecated property.

IgnoreStockboolean

Indicates whether stock should be ignored for this supplier warehouse, use this for additional warehouses that should not affect stock based business logic.

IsStandardboolean

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

IsActiveboolean

Indicates whether this supplier warehouse is active

LastImportedstring or null(date-time)

The date and time when data was last imported for this supplier warehouse, obsolete property, see import logs for details.

NextExpectedDatestring or null(date-time)

The next expected date for deliveries or updates from this supplier warehouse, deprecated property.

TransferMethodIdinteger or null(int32)

The transfer method identifier used for this supplier warehouse, deprecated property.

Changedstring or null

The date and time the supplier warehouse was last changed

ChangedBystring or null

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

Response
application/json
{ "Id": 0, "SupplierId": 0, "Name": "string", "CostBlock": 0, "FreightCost": 0, "MinimumOrderValue": 0, "MinimumOrderValueCost": 0, "StandardLeadTimeDayCount": 0, "TransferMethodValue": "string", "IgnoreStock": true, "IsStandard": true, "IsActive": true, "LastImported": "2019-08-24T14:15:22Z", "NextExpectedDate": "2019-08-24T14:15:22Z", "TransferMethodId": 0, "Changed": "string", "ChangedBy": "string" }

Update a supplier warehouse

Request

Update a specific supplier warehouse by its internal id

Path
supplierIdinteger(int32)required

Supplier id

warehouseIdinteger(int32)required

Warehouse id

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

SupplierWarehouse

Idinteger(int32)

The supplier warehouse identifier

SupplierIdinteger(int32)

The supplier identifier associated with this warehouse

Namestring or null

The name of the supplier warehouse

CostBlockinteger or null(int32)

The cost block identifier, deprecated property.

FreightCostnumber or null(decimal)

The freight cost associated with this supplier warehouse, deprecated property.

MinimumOrderValuenumber or null(decimal)

The minimum order value required for this supplier warehouse, deprecated property.

MinimumOrderValueCostnumber or null(decimal)

The cost associated with minimum order value requirements, deprecated property.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time usually in days for goods from this supplier warehouse

TransferMethodValuestring or null[ 0 .. 255 ] characters

The transfer method value for this supplier warehouse, deprecated property.

IgnoreStockboolean

Indicates whether stock should be ignored for this supplier warehouse, use this for additional warehouses that should not affect stock based business logic.

IsStandardboolean

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

IsActiveboolean

Indicates whether this supplier warehouse is active

LastImportedstring or null(date-time)

The date and time when data was last imported for this supplier warehouse, obsolete property, see import logs for details.

NextExpectedDatestring or null(date-time)

The next expected date for deliveries or updates from this supplier warehouse, deprecated property.

TransferMethodIdinteger or null(int32)

The transfer method identifier used for this supplier warehouse, deprecated property.

Changedstring or null

The date and time the supplier warehouse was last changed

ChangedBystring or null

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

curl -i -X PUT \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/supplier/{supplierId}/warehouse/{warehouseId}' \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '{
    "Id": 0,
    "SupplierId": 0,
    "Name": "string",
    "CostBlock": 0,
    "FreightCost": 0,
    "MinimumOrderValue": 0,
    "MinimumOrderValueCost": 0,
    "StandardLeadTimeDayCount": 0,
    "TransferMethodValue": "string",
    "IgnoreStock": true,
    "IsStandard": true,
    "IsActive": true,
    "LastImported": "2019-08-24T14:15:22Z",
    "NextExpectedDate": "2019-08-24T14:15:22Z",
    "TransferMethodId": 0,
    "Changed": "string",
    "ChangedBy": "string"
  }'

Responses

If the supplier warehouse was successfully updated

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

List supplier warehouses

Request

Get a list of all warehouses associated with a specific supplier

Path
supplierIdinteger(int32)required

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

Responses

Returns the list of supplier warehouses, if any exists

Bodyapplication/jsonArray [
Idinteger(int32)

The supplier warehouse identifier

SupplierIdinteger(int32)

The supplier identifier associated with this warehouse

Namestring or null

The name of the supplier warehouse

CostBlockinteger or null(int32)

The cost block identifier, deprecated property.

FreightCostnumber or null(decimal)

The freight cost associated with this supplier warehouse, deprecated property.

MinimumOrderValuenumber or null(decimal)

The minimum order value required for this supplier warehouse, deprecated property.

MinimumOrderValueCostnumber or null(decimal)

The cost associated with minimum order value requirements, deprecated property.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time usually in days for goods from this supplier warehouse

TransferMethodValuestring or null[ 0 .. 255 ] characters

The transfer method value for this supplier warehouse, deprecated property.

IgnoreStockboolean

Indicates whether stock should be ignored for this supplier warehouse, use this for additional warehouses that should not affect stock based business logic.

IsStandardboolean

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

IsActiveboolean

Indicates whether this supplier warehouse is active

LastImportedstring or null(date-time)

The date and time when data was last imported for this supplier warehouse, obsolete property, see import logs for details.

NextExpectedDatestring or null(date-time)

The next expected date for deliveries or updates from this supplier warehouse, deprecated property.

TransferMethodIdinteger or null(int32)

The transfer method identifier used for this supplier warehouse, deprecated property.

Changedstring or null

The date and time the supplier warehouse was last changed

ChangedBystring or null

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

]
Response
application/json
[ { "Id": 0, "SupplierId": 0, "Name": "string", "CostBlock": 0, "FreightCost": 0, "MinimumOrderValue": 0, "MinimumOrderValueCost": 0, "StandardLeadTimeDayCount": 0, "TransferMethodValue": "string", "IgnoreStock": true, "IsStandard": true, "IsActive": true, "LastImported": "2019-08-24T14:15:22Z", "NextExpectedDate": "2019-08-24T14:15:22Z", "TransferMethodId": 0, "Changed": "string", "ChangedBy": "string" } ]

Add a supplier warehouse

Request

Add a new warehouse to a specific supplier

Path
supplierIdinteger(int32)required

Supplier id

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

SupplierWarehouse

Idinteger(int32)

The supplier warehouse identifier

SupplierIdinteger(int32)

The supplier identifier associated with this warehouse

Namestring or null

The name of the supplier warehouse

CostBlockinteger or null(int32)

The cost block identifier, deprecated property.

FreightCostnumber or null(decimal)

The freight cost associated with this supplier warehouse, deprecated property.

MinimumOrderValuenumber or null(decimal)

The minimum order value required for this supplier warehouse, deprecated property.

MinimumOrderValueCostnumber or null(decimal)

The cost associated with minimum order value requirements, deprecated property.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time usually in days for goods from this supplier warehouse

TransferMethodValuestring or null[ 0 .. 255 ] characters

The transfer method value for this supplier warehouse, deprecated property.

IgnoreStockboolean

Indicates whether stock should be ignored for this supplier warehouse, use this for additional warehouses that should not affect stock based business logic.

IsStandardboolean

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

IsActiveboolean

Indicates whether this supplier warehouse is active

LastImportedstring or null(date-time)

The date and time when data was last imported for this supplier warehouse, obsolete property, see import logs for details.

NextExpectedDatestring or null(date-time)

The next expected date for deliveries or updates from this supplier warehouse, deprecated property.

TransferMethodIdinteger or null(int32)

The transfer method identifier used for this supplier warehouse, deprecated property.

Changedstring or null

The date and time the supplier warehouse was last changed

ChangedBystring or null

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

curl -i -X POST \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/supplier/{supplierId}/warehouse' \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '{
    "Id": 0,
    "SupplierId": 0,
    "Name": "string",
    "CostBlock": 0,
    "FreightCost": 0,
    "MinimumOrderValue": 0,
    "MinimumOrderValueCost": 0,
    "StandardLeadTimeDayCount": 0,
    "TransferMethodValue": "string",
    "IgnoreStock": true,
    "IsStandard": true,
    "IsActive": true,
    "LastImported": "2019-08-24T14:15:22Z",
    "NextExpectedDate": "2019-08-24T14:15:22Z",
    "TransferMethodId": 0,
    "Changed": "string",
    "ChangedBy": "string"
  }'

Responses

If the supplier warehouse was successfully added

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

List deleted supplier warehouses

Request

Get a list of all deleted warehouses associated with a specific supplier, update a deleted supplier warehouse with IsActive = true to activate it again

Path
supplierIdinteger(int32)required

Supplier 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/supplier/{supplierId}/warehouse/deleted/warehouse' \
  -H 'account-id: 0' \
  -H 'application-id: 0'

Responses

Returns the list of deleted supplier warehouses, if any exists

Bodyapplication/jsonArray [
Idinteger(int32)

The supplier warehouse identifier

SupplierIdinteger(int32)

The supplier identifier associated with this warehouse

Namestring or null

The name of the supplier warehouse

CostBlockinteger or null(int32)

The cost block identifier, deprecated property.

FreightCostnumber or null(decimal)

The freight cost associated with this supplier warehouse, deprecated property.

MinimumOrderValuenumber or null(decimal)

The minimum order value required for this supplier warehouse, deprecated property.

MinimumOrderValueCostnumber or null(decimal)

The cost associated with minimum order value requirements, deprecated property.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time usually in days for goods from this supplier warehouse

TransferMethodValuestring or null[ 0 .. 255 ] characters

The transfer method value for this supplier warehouse, deprecated property.

IgnoreStockboolean

Indicates whether stock should be ignored for this supplier warehouse, use this for additional warehouses that should not affect stock based business logic.

IsStandardboolean

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

IsActiveboolean

Indicates whether this supplier warehouse is active

LastImportedstring or null(date-time)

The date and time when data was last imported for this supplier warehouse, obsolete property, see import logs for details.

NextExpectedDatestring or null(date-time)

The next expected date for deliveries or updates from this supplier warehouse, deprecated property.

TransferMethodIdinteger or null(int32)

The transfer method identifier used for this supplier warehouse, deprecated property.

Changedstring or null

The date and time the supplier warehouse was last changed

ChangedBystring or null

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

]
Response
application/json
[ { "Id": 0, "SupplierId": 0, "Name": "string", "CostBlock": 0, "FreightCost": 0, "MinimumOrderValue": 0, "MinimumOrderValueCost": 0, "StandardLeadTimeDayCount": 0, "TransferMethodValue": "string", "IgnoreStock": true, "IsStandard": true, "IsActive": true, "LastImported": "2019-08-24T14:15:22Z", "NextExpectedDate": "2019-08-24T14:15:22Z", "TransferMethodId": 0, "Changed": "string", "ChangedBy": "string" } ]

Supplier WarehouseLocation

Operations

Product VariantGroup

Operations

Product WarehouseLocation

Operations

Product Warehouse

Operations