list_locations
Retrieve a paginated list of warehouse locations by specifying the warehouse ID, page number, and limit for efficient inventory management within the ShipHero MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of results per page | |
page | No | Page number for pagination | |
warehouse_id | Yes | The ID of the warehouse to list locations for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Number of results per page",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"warehouse_id": {
"description": "The ID of the warehouse to list locations for",
"type": "string"
}
},
"required": [
"warehouse_id"
],
"type": "object"
}