- API Reference
- API Calls
- Batches
- Bins
- Carriers
- Clients
- Cost Centers
- Kits
- Kit Lines
- Locations
- Location Contents
- Materials
- Material Codes
- Material Properties
- Orders
- Order Lines
- Reports
- Report Rows
- Shelves
- Snapshots
- Stations
- Storage Rules
- Storage Units
- Transactions
- Users
- Warehouses
- Work Order Lines
- Zones
Storage Units
Attributes
-
id
string
Unique identifier for the object.
- name string
-
type
integer
1 is Static Rack, 2 is Ground Storage, 3 is Vertical Carousel, 4 is Horizontal Carousel, 5 is Shuttle (VLM), 6 is Single File (Material Flight), 7 is Material Handling Unit, 8 is Production, and 9 is Vertical Buffer.
Endpoints
List Storage Units
get /api/storage_unitsGet the list of storage units from the PPG database and return a JSON response.
Arguments
- name string
-
type
integer
1 is Static Rack, 2 is Ground Storage, 3 is Vertical Carousel, 4 is Horizontal Carousel, 5 is Shuttle (VLM), 6 is Single File (Material Flight), 7 is Material Handling Unit, 8 is Production, and 9 is Vertical Buffer.
- id uuid
- depthSteps Integer
- description String
- grossDepth Integer
- grossWidth Integer
- isManualSequenceNumbers Integer
- maxWeight Integer
- netDepth Integer
- netWidth Integer
- widthSteps Integer
- warehouseId uuid
Request with curl
curl "http://[Your IP]
/api/storage_units" \
-X
get
\
-H "Content-Type: application/json" \
-H "Authorization: Bearer [Your JWT Access Token]"
Example Response
{
"storage units": [{
"id": "
string
",
"name": "
string
",
"type": "
integer
",
}]
}]
}
Show Storage Unit
get /api/storage_unit/[id]Get info from a specific storage unit from the PPG database and return a JSON response.
Arguments
- name string
- type integer
- id uuid
- depthSteps Integer
- description String
- grossDepth Integer
- grossWidth Integer
- isManualSequenceNumbers Integer
- maxWeight Integer
- netDepth Integer
- netWidth Integer
- widthSteps Integer
- warehouseId uuid
Request with curl
curl "http://[Your IP]
/api/storage_unit/[id]" \
-X
get
\
-H "Content-Type: application/json" \
-H "Authorization: Bearer [Your JWT Access Token]"
Example Response
{
"storage_unit": {
"id":
"
string
"
,
"name":
"
string
"
,
"type":
integer
,
}
}