Contents
A warehouse represents a physical facility where inventory is stored. This endpoint is read-only; warehouse records are managed in the Desktop application.
{
"wID": 1,
"warehouse": "Main",
"address": "100 Warehouse Dr",
"city": "Springfield",
"state": "IL",
"zip": "62701",
"country": "US",
"phone": "555-0400",
"active": true
}| Field | Type | Description |
|---|---|---|
wID | integer | Unique warehouse identifier |
warehouse | string | Warehouse name |
address | string | Street address |
city | string | City |
state | string | State or province |
zip | string | Postal code |
country | string | Country code |
phone | string | Phone number |
active | boolean | false when the warehouse is inactive |
GET /WarehouseReturns warehouses with standard pagination parameters.
{
"value": [
{
"wID": 1,
"warehouse": "Main",
"address": "100 Warehouse Dr",
"city": "Springfield",
"state": "IL",
"zip": "62701",
"country": "US",
"phone": "555-0400",
"active": true
},
{
"wID": 2,
"warehouse": "North Annex",
"address": "450 Industrial Pkwy",
"city": "Springfield",
"state": "IL",
"zip": "62704",
"country": "US",
"phone": "555-0450",
"active": true
}
],
"totalCount": 4,
"page": 1,
"pageSize": 25,
"pageCount": 1,
"hasMore": false
}GET /Warehouse/{id}Returns 404 if the warehouse does not exist.
GET /Warehouse/1{
"wID": 1,
"warehouse": "Main",
"address": "100 Warehouse Dr",
"city": "Springfield",
"state": "IL",
"zip": "62701",
"country": "US",
"phone": "555-0400",
"active": true
}| Action | Permission |
|---|---|
| List / Get | Warehouses List (SecurityID 113) |
On this page