get_inventory_by_location
Retrieve inventory details by location and warehouse ID using the ShipHero MCP Server to manage and track stock levels efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location_id | No | Optional location ID to filter by | |
warehouse_id | Yes | The warehouse ID to get inventory for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"location_id": {
"description": "Optional location ID to filter by",
"type": "string"
},
"warehouse_id": {
"description": "The warehouse ID to get inventory for",
"type": "string"
}
},
"required": [
"warehouse_id"
],
"type": "object"
}