The Norce Management API lets you manage configurations and metadata on a client.
The Norce Management API lets you manage configurations and metadata on a client.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/
WarehouseLocation model, represents a specific location within a warehouse. Each location can have unique attributes such as code, name, and whether it is the standard location for the warehouse. It can also override lead times and stock calculation settings from the warehouse.
Indicates whether this is the standard location for the warehouse, only one location can be marked as standard per warehouse.
The standard lead time commonly in days for this warehouse location, overrides warehouse setting if specified
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.
{ "Id": 0, "Code": "string", "Name": "string", "IsStandard": true, "StandardLeadTimeDayCount": 0, "IsIncludedInStockCalculation": true, "PrimaryPriceListId": 0, "PrimaryPriceListName": "string", "Changed": "string", "ChangedBy": "string" }
Warehouse model, represents a warehouse in the system. Each warehouse can have specific location details and types. Warehouses are used for availability calculation, order reservation, and in-stock based business rules.
The list of locations associated with this warehouse
Indicates whether this is a standard warehouse, only one warehouse can be marked as standard for a client.
The standard lead time in commonly measured in days for this warehouse
{ "Id": 0, "TypeId": 0, "TypeName": "string", "Code": "string", "Name": "string", "Locations": [ { … } ], "LocationId": 0, "LocationName": "string", "IsStandard": true, "StandardLeadTimeDayCount": 0, "IsActive": true, "Changed": "string", "ChangedBy": "string" }