Supplier id
MANAGEMENT API (BETA)
/- List supplier warehouse locations
Update supplier warehouse locations
List supplier warehouse l...
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/supplier/{supplierId}/warehouse/{warehouseId}/location
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/supplier/{supplierId}/warehouse/{warehouseId}/location'
Response
[ { "Id": 0, "SupplierId": 0, "WarehouseId": 0, "Name": "string", "CostBlock": 0, "FreightCost": 0.1, "MinimumOrderValue": 0.1, "MinimumOrderValueCost": 0.1, "StandardLeadTimeDayCount": 0, "TransferMethodValue": "string", "IsStandard": true, "IgnoreStock": true, "LastImported": "2019-08-24T14:15:22Z", "NextExpectedDate": "2019-08-24T14:15:22Z", "TransferMethodId": 0, "Changed": "string", "ChangedBy": "string" } ]
Bodyrequired Array []
- application/json
- text/json
- application/x-www-form-urlencoded
Supplier warehouse locations
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/supplier/{supplierId}/warehouse/{warehouseId}/location
- cURL
- JS
- C#
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/supplier/{supplierId}/warehouse/{warehouseId}/location' \
-H 'Content-Type: application/json' \
-d '[
{
"Id": 0,
"SupplierId": 0,
"WarehouseId": 0,
"Name": "string",
"CostBlock": 0,
"FreightCost": 0.1,
"MinimumOrderValue": 0.1,
"MinimumOrderValueCost": 0.1,
"StandardLeadTimeDayCount": 0,
"TransferMethodValue": "string",
"IsStandard": true,
"IgnoreStock": true,
"LastImported": "2019-08-24T14:15:22Z",
"NextExpectedDate": "2019-08-24T14:15:22Z",
"TransferMethodId": 0,
"Changed": "string",
"ChangedBy": "string"
}
]'