Warehouse id
MANAGEMENT API (BETA)
//Update warehouse
Norce Management API (v1)
Download OpenAPI description
Languages
Servers
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/{id}
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse/{id}'
Response
{ "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" }
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse/{id}
- cURL
- JS
- C#
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse/{id}' \
-H 'Content-Type: application/json' \
-d '{
"Id": 0,
"TypeId": 0,
"TypeName": "string",
"Code": "string",
"Name": "string",
"Locations": [
{
"Id": 0,
"Code": "string",
"Name": "string",
"IsStandard": true,
"StandardLeadTimeDayCount": 0,
"IsIncludedInStockCalculation": true,
"PrimaryPriceListId": 0,
"PrimaryPriceListName": "string",
"Changed": "string",
"ChangedBy": "string"
}
],
"LocationId": 0,
"LocationName": "string",
"IsStandard": true,
"StandardLeadTimeDayCount": 0,
"IsActive": true,
"Changed": "string",
"ChangedBy": "string"
}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse
Response
[ { "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" } ]
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse \
-H 'Content-Type: application/json' \
-d '{
"Id": 0,
"TypeId": 0,
"TypeName": "string",
"Code": "string",
"Name": "string",
"Locations": [
{
"Id": 0,
"Code": "string",
"Name": "string",
"IsStandard": true,
"StandardLeadTimeDayCount": 0,
"IsIncludedInStockCalculation": true,
"PrimaryPriceListId": 0,
"PrimaryPriceListName": "string",
"Changed": "string",
"ChangedBy": "string"
}
],
"LocationId": 0,
"LocationName": "string",
"IsStandard": true,
"StandardLeadTimeDayCount": 0,
"IsActive": true,
"Changed": "string",
"ChangedBy": "string"
}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse/deleted
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/warehouse/deleted
Response
[ { "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" } ]