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/
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse/{warehouseId}/location
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'Returns the list of warehouse locations
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" } ]
List of warehouse locations
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.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse/{warehouseId}/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"
}
]'