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

Get a supplier price list by id

Request

Get a specific supplier price list by its internal id

Path
idinteger(int32)required

Supplier price list id

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

Responses

Returns the Supplier Price List

Bodyapplication/json
Idinteger(int32)

The supplier price list identifier

SupplierIdinteger(int32)

The supplier identifier associated with this price list

SupplierNamestring or null

The name of the supplier associated with this price list

SupplierCodestring or null

The code of the supplier associated with this price list

SupplierCountryNamestring or null

The country name of the supplier associated with this price list

Namestring or null

The name of the supplier price list

Codestring or null[ 0 .. 50 ] characters

The code identifier for this supplier price list

Descriptionstring or null[ 0 .. 100 ] characters

The description of the supplier price list

CurrencyIdinteger or null(int32)

The currency identifier associated with this price list

CurrencyNamestring or null

The name of the currency associated with this price list

CurrencyCodestring or null

The code of the currency associated with this price list

Contactstring or null[ 0 .. 50 ] characters

The contact information for this supplier price list

Commentstring or null[ 0 .. 50 ] characters

Comments or notes about this supplier price list

EndCustomerstring or null[ 0 .. 100 ] characters

The end customer information for this supplier price list, used for supplier price lists that are specific to certain end customers (bids).

ManufacturerIdinteger or null(int32)

The manufacturer identifier associated with this price list, not commonly used.

StartDatestring or null(date-time)

The start date when this price list becomes effective, not commonly used.

EndDatestring or null(date-time)

The end date when this price list expires, not commonly used.

IsManuallyMaintainedboolean

Indicates whether this price list is manually maintained. Allows for manually handle prices in the admin interface.

IsActiveboolean

Indicates whether this supplier price list is active

IsPrimaryboolean

Indicates whether this is the primary price list for the supplier. Only one price list per supplier can be marked as primary.

ManufacturerCodestring or null[ 0 .. 50 ] characters

The manufacturer code associated with this price list, not commonly used.

IsSpecialTermsboolean

Indicates whether this price list has special terms and conditions, for display purposes only.

Changedstring or null

The date and time the supplier price list was last changed

ChangedBystring or null

Fullname or Systemname of the user who last changed the supplier price list

Response
application/json
{ "Id": 0, "SupplierId": 0, "SupplierName": "string", "SupplierCode": "string", "SupplierCountryName": "string", "Name": "string", "Code": "string", "Description": "string", "CurrencyId": 0, "CurrencyName": "string", "CurrencyCode": "string", "Contact": "string", "Comment": "string", "EndCustomer": "string", "ManufacturerId": 0, "StartDate": "2019-08-24T14:15:22Z", "EndDate": "2019-08-24T14:15:22Z", "IsManuallyMaintained": true, "IsActive": true, "IsPrimary": true, "ManufacturerCode": "string", "IsSpecialTerms": true, "Changed": "string", "ChangedBy": "string" }

Update a supplier price list

Request

Update a specific supplier price list by its internal id

Path
supplierIdinteger(int32)required

Supplier id

idinteger(int32)required

Supplier price list id

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

Supplier price list model to update

Idinteger(int32)

The supplier price list identifier

SupplierIdinteger(int32)

The supplier identifier associated with this price list

SupplierNamestring or null

The name of the supplier associated with this price list

SupplierCodestring or null

The code of the supplier associated with this price list

SupplierCountryNamestring or null

The country name of the supplier associated with this price list

Namestring or null

The name of the supplier price list

Codestring or null[ 0 .. 50 ] characters

The code identifier for this supplier price list

Descriptionstring or null[ 0 .. 100 ] characters

The description of the supplier price list

CurrencyIdinteger or null(int32)

The currency identifier associated with this price list

CurrencyNamestring or null

The name of the currency associated with this price list

CurrencyCodestring or null

The code of the currency associated with this price list

Contactstring or null[ 0 .. 50 ] characters

The contact information for this supplier price list

Commentstring or null[ 0 .. 50 ] characters

Comments or notes about this supplier price list

EndCustomerstring or null[ 0 .. 100 ] characters

The end customer information for this supplier price list, used for supplier price lists that are specific to certain end customers (bids).

ManufacturerIdinteger or null(int32)

The manufacturer identifier associated with this price list, not commonly used.

StartDatestring or null(date-time)

The start date when this price list becomes effective, not commonly used.

EndDatestring or null(date-time)

The end date when this price list expires, not commonly used.

IsManuallyMaintainedboolean

Indicates whether this price list is manually maintained. Allows for manually handle prices in the admin interface.

IsActiveboolean

Indicates whether this supplier price list is active

IsPrimaryboolean

Indicates whether this is the primary price list for the supplier. Only one price list per supplier can be marked as primary.

ManufacturerCodestring or null[ 0 .. 50 ] characters

The manufacturer code associated with this price list, not commonly used.

IsSpecialTermsboolean

Indicates whether this price list has special terms and conditions, for display purposes only.

Changedstring or null

The date and time the supplier price list was last changed

ChangedBystring or null

Fullname or Systemname of the user who last changed the supplier price list

curl -i -X PUT \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/supplier/{supplierId}/pricelist/{id}' \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '{
    "Id": 0,
    "SupplierId": 0,
    "SupplierName": "string",
    "SupplierCode": "string",
    "SupplierCountryName": "string",
    "Name": "string",
    "Code": "string",
    "Description": "string",
    "CurrencyId": 0,
    "CurrencyName": "string",
    "CurrencyCode": "string",
    "Contact": "string",
    "Comment": "string",
    "EndCustomer": "string",
    "ManufacturerId": 0,
    "StartDate": "2019-08-24T14:15:22Z",
    "EndDate": "2019-08-24T14:15:22Z",
    "IsManuallyMaintained": true,
    "IsActive": true,
    "IsPrimary": true,
    "ManufacturerCode": "string",
    "IsSpecialTerms": true,
    "Changed": "string",
    "ChangedBy": "string"
  }'

Responses

If the supplier price list was successfully updated

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

List supplier price lists by supplier

Request

Get a list of all supplier price lists 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}/pricelist' \
  -H 'account-id: 0' \
  -H 'application-id: 0'

Responses

Returns the list of supplier price lists, if any exists

Bodyapplication/jsonArray [
Idinteger(int32)

The supplier price list identifier

SupplierIdinteger(int32)

The supplier identifier associated with this price list

SupplierNamestring or null

The name of the supplier associated with this price list

SupplierCodestring or null

The code of the supplier associated with this price list

SupplierCountryNamestring or null

The country name of the supplier associated with this price list

Namestring or null

The name of the supplier price list

Codestring or null[ 0 .. 50 ] characters

The code identifier for this supplier price list

Descriptionstring or null[ 0 .. 100 ] characters

The description of the supplier price list

CurrencyIdinteger or null(int32)

The currency identifier associated with this price list

CurrencyNamestring or null

The name of the currency associated with this price list

CurrencyCodestring or null

The code of the currency associated with this price list

Contactstring or null[ 0 .. 50 ] characters

The contact information for this supplier price list

Commentstring or null[ 0 .. 50 ] characters

Comments or notes about this supplier price list

EndCustomerstring or null[ 0 .. 100 ] characters

The end customer information for this supplier price list, used for supplier price lists that are specific to certain end customers (bids).

ManufacturerIdinteger or null(int32)

The manufacturer identifier associated with this price list, not commonly used.

StartDatestring or null(date-time)

The start date when this price list becomes effective, not commonly used.

EndDatestring or null(date-time)

The end date when this price list expires, not commonly used.

IsManuallyMaintainedboolean

Indicates whether this price list is manually maintained. Allows for manually handle prices in the admin interface.

IsActiveboolean

Indicates whether this supplier price list is active

IsPrimaryboolean

Indicates whether this is the primary price list for the supplier. Only one price list per supplier can be marked as primary.

ManufacturerCodestring or null[ 0 .. 50 ] characters

The manufacturer code associated with this price list, not commonly used.

IsSpecialTermsboolean

Indicates whether this price list has special terms and conditions, for display purposes only.

Changedstring or null

The date and time the supplier price list was last changed

ChangedBystring or null

Fullname or Systemname of the user who last changed the supplier price list

]
Response
application/json
[ { "Id": 0, "SupplierId": 0, "SupplierName": "string", "SupplierCode": "string", "SupplierCountryName": "string", "Name": "string", "Code": "string", "Description": "string", "CurrencyId": 0, "CurrencyName": "string", "CurrencyCode": "string", "Contact": "string", "Comment": "string", "EndCustomer": "string", "ManufacturerId": 0, "StartDate": "2019-08-24T14:15:22Z", "EndDate": "2019-08-24T14:15:22Z", "IsManuallyMaintained": true, "IsActive": true, "IsPrimary": true, "ManufacturerCode": "string", "IsSpecialTerms": true, "Changed": "string", "ChangedBy": "string" } ]

Add a supplier price list

Request

Add a new supplier price list for a specific supplier

Path
supplierIdinteger(int32)required

Supplier id

Headers
account-idintegerrequired

User Account ID

application-idintegerrequired

Application ID

Bodyapplication/jsonrequired

Supplier price list model to add

Idinteger(int32)

The supplier price list identifier

SupplierIdinteger(int32)

The supplier identifier associated with this price list

SupplierNamestring or null

The name of the supplier associated with this price list

SupplierCodestring or null

The code of the supplier associated with this price list

SupplierCountryNamestring or null

The country name of the supplier associated with this price list

Namestring or null

The name of the supplier price list

Codestring or null[ 0 .. 50 ] characters

The code identifier for this supplier price list

Descriptionstring or null[ 0 .. 100 ] characters

The description of the supplier price list

CurrencyIdinteger or null(int32)

The currency identifier associated with this price list

CurrencyNamestring or null

The name of the currency associated with this price list

CurrencyCodestring or null

The code of the currency associated with this price list

Contactstring or null[ 0 .. 50 ] characters

The contact information for this supplier price list

Commentstring or null[ 0 .. 50 ] characters

Comments or notes about this supplier price list

EndCustomerstring or null[ 0 .. 100 ] characters

The end customer information for this supplier price list, used for supplier price lists that are specific to certain end customers (bids).

ManufacturerIdinteger or null(int32)

The manufacturer identifier associated with this price list, not commonly used.

StartDatestring or null(date-time)

The start date when this price list becomes effective, not commonly used.

EndDatestring or null(date-time)

The end date when this price list expires, not commonly used.

IsManuallyMaintainedboolean

Indicates whether this price list is manually maintained. Allows for manually handle prices in the admin interface.

IsActiveboolean

Indicates whether this supplier price list is active

IsPrimaryboolean

Indicates whether this is the primary price list for the supplier. Only one price list per supplier can be marked as primary.

ManufacturerCodestring or null[ 0 .. 50 ] characters

The manufacturer code associated with this price list, not commonly used.

IsSpecialTermsboolean

Indicates whether this price list has special terms and conditions, for display purposes only.

Changedstring or null

The date and time the supplier price list was last changed

ChangedBystring or null

Fullname or Systemname of the user who last changed the supplier price list

curl -i -X POST \
  'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/supplier/{supplierId}/pricelist' \
  -H 'Content-Type: application/json' \
  -H 'account-id: 0' \
  -H 'application-id: 0' \
  -d '{
    "Id": 0,
    "SupplierId": 0,
    "SupplierName": "string",
    "SupplierCode": "string",
    "SupplierCountryName": "string",
    "Name": "string",
    "Code": "string",
    "Description": "string",
    "CurrencyId": 0,
    "CurrencyName": "string",
    "CurrencyCode": "string",
    "Contact": "string",
    "Comment": "string",
    "EndCustomer": "string",
    "ManufacturerId": 0,
    "StartDate": "2019-08-24T14:15:22Z",
    "EndDate": "2019-08-24T14:15:22Z",
    "IsManuallyMaintained": true,
    "IsActive": true,
    "IsPrimary": true,
    "ManufacturerCode": "string",
    "IsSpecialTerms": true,
    "Changed": "string",
    "ChangedBy": "string"
  }'

Responses

If the supplier price list was successfully added

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

List deleted supplier price lists

Request

Get a list of all deleted supplier price lists, update a deleted supplier price list with IsActive = true to activate it again

Path
supplierIdstringrequired
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}/pricelist/deleted' \
  -H 'account-id: 0' \
  -H 'application-id: 0'

Responses

Returns the list of deleted supplier price lists, if any exists

Bodyapplication/jsonArray [
Idinteger(int32)

The supplier price list identifier

SupplierIdinteger(int32)

The supplier identifier associated with this price list

SupplierNamestring or null

The name of the supplier associated with this price list

SupplierCodestring or null

The code of the supplier associated with this price list

SupplierCountryNamestring or null

The country name of the supplier associated with this price list

Namestring or null

The name of the supplier price list

Codestring or null[ 0 .. 50 ] characters

The code identifier for this supplier price list

Descriptionstring or null[ 0 .. 100 ] characters

The description of the supplier price list

CurrencyIdinteger or null(int32)

The currency identifier associated with this price list

CurrencyNamestring or null

The name of the currency associated with this price list

CurrencyCodestring or null

The code of the currency associated with this price list

Contactstring or null[ 0 .. 50 ] characters

The contact information for this supplier price list

Commentstring or null[ 0 .. 50 ] characters

Comments or notes about this supplier price list

EndCustomerstring or null[ 0 .. 100 ] characters

The end customer information for this supplier price list, used for supplier price lists that are specific to certain end customers (bids).

ManufacturerIdinteger or null(int32)

The manufacturer identifier associated with this price list, not commonly used.

StartDatestring or null(date-time)

The start date when this price list becomes effective, not commonly used.

EndDatestring or null(date-time)

The end date when this price list expires, not commonly used.

IsManuallyMaintainedboolean

Indicates whether this price list is manually maintained. Allows for manually handle prices in the admin interface.

IsActiveboolean

Indicates whether this supplier price list is active

IsPrimaryboolean

Indicates whether this is the primary price list for the supplier. Only one price list per supplier can be marked as primary.

ManufacturerCodestring or null[ 0 .. 50 ] characters

The manufacturer code associated with this price list, not commonly used.

IsSpecialTermsboolean

Indicates whether this price list has special terms and conditions, for display purposes only.

Changedstring or null

The date and time the supplier price list was last changed

ChangedBystring or null

Fullname or Systemname of the user who last changed the supplier price list

]
Response
application/json
[ { "Id": 0, "SupplierId": 0, "SupplierName": "string", "SupplierCode": "string", "SupplierCountryName": "string", "Name": "string", "Code": "string", "Description": "string", "CurrencyId": 0, "CurrencyName": "string", "CurrencyCode": "string", "Contact": "string", "Comment": "string", "EndCustomer": "string", "ManufacturerId": 0, "StartDate": "2019-08-24T14:15:22Z", "EndDate": "2019-08-24T14:15:22Z", "IsManuallyMaintained": true, "IsActive": true, "IsPrimary": true, "ManufacturerCode": "string", "IsSpecialTerms": true, "Changed": "string", "ChangedBy": "string" } ]

Supplier PriceListWarehouse

Operations

Supplier

Operations

Supplier Warehouse

Operations

Supplier WarehouseLocation

Operations

Product VariantGroup

Operations

Product WarehouseLocation

Operations

Product Warehouse

Operations