Shelves
Shelves are the individual storage areas within PPG.
Attributes
-
id
string
Unique identifier for the object.
Endpoints
List Shelves
get /api/shelvesArguments
- carrierId uuid
- depth Integer
- depthSteps Integer
- id Uuid
- maxHeight Integer
- maxWeight Integer
- minHeight Integer
- name String
- number Integer
- sequenceNumber Integer
- width Integer
- widthSteps Integer
- xCoordinate Integer
- yCoordinate Integer
- zCoordinate Integer
- zoneId uuid
Request with curl
curl "http://[Your IP]/api/shelves" \
-X
get
\-H "Content-Type: application/json" \-H "Authorization: Bearer [Your JWT Access Token]"
Example Response
{
"shelves": [{
"id": "string",
}]
}]
}
Show Shelf
get /api/shelf/[id]Arguments
- carrierId uuid
- depth Integer
- depthSteps Integer
- id Uuid
- maxHeight Integer
- maxWeight Integer
- minHeight Integer
- name String
- number Integer
- sequenceNumber Integer
- width Integer
- widthSteps Integer
- xCoordinate Integer
- yCoordinate Integer
- zCoordinate Integer
- zoneId uuid
Request with curl
curl "http://[Your IP]/api/shelf/[id]" \
-X
get
\-H "Content-Type: application/json" \
-H "Authorization: Bearer [Your JWT Access Token]"
Example Response
{
"shelf": {
"id": "string",
}
}