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

List supplier warehouse locations

Request

Get a list of all warehouse locations associated with a specific supplier and warehouse

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

Responses

Returns the list of supplier warehouse locations, if any exists

Bodyapplication/jsonArray [
Idinteger(int32)

The supplier warehouse location identifier

SupplierIdinteger(int32)

The supplier identifier associated with this warehouse location

WarehouseIdinteger(int32)

The warehouse identifier associated with this supplier location

Namestring or null

The name of the supplier warehouse location

CostBlockinteger or null(int32)

The cost block identifier for this supplier warehouse location, deprecated property.

FreightCostnumber or null(decimal)

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

MinimumOrderValuenumber or null(decimal)

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

MinimumOrderValueCostnumber or null(decimal)

The cost associated with minimum order value requirements for this supplier warehouse location, deprecated property.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time usually in days for goods from this supplier warehouse location, overrides supplier warehouse lead time.

TransferMethodValuestring or null[ 0 .. 255 ] characters

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

IsStandardboolean

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

IgnoreStockboolean or null

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

LastImportedstring or null(date-time)

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

NextExpectedDatestring or null(date-time)

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

TransferMethodIdinteger or null(int32)

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

Changedstring or null

The date and time the supplier warehouse location was last changed

ChangedBystring or null

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

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

Update supplier warehouse locations

Request

Update a list of warehouse locations associated with a specific supplier and warehouse

Path
supplierIdinteger(int32)required

Supplier id

warehouseIdinteger(int32)required

Warehouse id

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

List of SupplierWarehouseLocation

Array [
Idinteger(int32)

The supplier warehouse location identifier

SupplierIdinteger(int32)

The supplier identifier associated with this warehouse location

WarehouseIdinteger(int32)

The warehouse identifier associated with this supplier location

Namestring or null

The name of the supplier warehouse location

CostBlockinteger or null(int32)

The cost block identifier for this supplier warehouse location, deprecated property.

FreightCostnumber or null(decimal)

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

MinimumOrderValuenumber or null(decimal)

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

MinimumOrderValueCostnumber or null(decimal)

The cost associated with minimum order value requirements for this supplier warehouse location, deprecated property.

StandardLeadTimeDayCountinteger or null(int32)

The standard lead time usually in days for goods from this supplier warehouse location, overrides supplier warehouse lead time.

TransferMethodValuestring or null[ 0 .. 255 ] characters

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

IsStandardboolean

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

IgnoreStockboolean or null

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

LastImportedstring or null(date-time)

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

NextExpectedDatestring or null(date-time)

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

TransferMethodIdinteger or null(int32)

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

Changedstring or null

The date and time the supplier warehouse location was last changed

ChangedBystring or null

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

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

Responses

If the supplier warehouse locations were successfully updated

Response
No content

Product VariantGroup

Operations

Product WarehouseLocation

Operations

Product Warehouse

Operations