- API Reference
- Access Points
- API Calls
- Batches
- Bins
- Carriers
- Clients
- Cost Centers
- Images (Supplements)
- Kits
- Kit Lines
- Locations
- Location Contents
- Materials
- Material Codes
- Material Properties
- Orders
- Order Lines
- Reports
- Report Rows
- Settings
- Shelves
- Snapshots
- Stations
- Storage Rules
- Storage Units
- Transactions
- Users
- Warehouses
- Work Order Lines
- Zones
Storage Rules
Attributes
Endpoints
List Storage Rules
get /api/storage_rulesArguments
- description string
-
id
uuid
Unique identifier for the object.
- isDefaultBin integer
- maxNumberLocations integer
- minNumberLocations integer
- minStockPerBin integer
- packSize integer
- packSizeUsageType integer
- requiredCapacity integer
-
limit
integer
A limit on the number of objects to be returned. Limit can range between 1 and 1000.
Default value: 250
-
page
integer
Page-numbering is based on the value of the "limit" argument. If limit=20, then page=0 will display the hits from 1 to 20. (Page numbers are zero-based.) Using page without a limit returns all items.
-
countOnly
boolean
When "true", will only return a count of the amount of items in the query.
Default value: false
Request with curl
curl "http://[Your IP]
/api/storage_rules" \
-X
get
\
-H "Content-Type: application/json" \
-H "Authorization: Bearer [Your JWT Access Token]"
Example Response
{
"storage_rules": [{
}]
}]
}
Show Storage Rule
get /api/storage_rule/[id]Arguments
- description String
-
id
uuid
Unique identifier for the object.
Request with curl
curl "http://[Your IP]
/api/storage_rule/[id]" \
-X
get
\
-H "Content-Type: application/json" \
-H "Authorization: Bearer [Your JWT Access Token]"
Example Response
{
"storage_rule": {
}
}