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/pricing/pricelist/{priceListId}/warehouse
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/pricelist/{priceListId}/warehouse' \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of price list warehouses, if any exist
The code of the location within the warehouse used for identification purposes
Indicates whether the location is included in stock calculation processes
Indicates whether this warehouse is set as the standard warehouse for the price list
[ { "Id": 0, "Code": "string", "PriceListId": 0, "Name": "string", "LocationId": 0, "LocationName": "string", "LocationCode": "string", "LocationIsIncludedInStockCalculation": true, "IsStandard": true, "Changed": "string", "ChangedBy": "string" } ]
list of price list warehouse links
The code of the location within the warehouse used for identification purposes
Indicates whether the location is included in stock calculation processes
Indicates whether this warehouse is set as the standard warehouse for the price list
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/pricelist/{priceListId}/warehouse
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/pricelist/{priceListId}/warehouse' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '[
{
"Id": 0,
"Code": "string",
"PriceListId": 0,
"Name": "string",
"LocationId": 0,
"LocationName": "string",
"LocationCode": "string",
"LocationIsIncludedInStockCalculation": true,
"IsStandard": true,
"Changed": "string",
"ChangedBy": "string"
}
]'0