get_warehouse
Retrieve warehouse details using the specified warehouse ID to manage inventory and operations with ShipHero MCP Server’s API tools.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
warehouse_id | Yes | The ID of the warehouse to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"warehouse_id": {
"description": "The ID of the warehouse to retrieve",
"type": "string"
}
},
"required": [
"warehouse_id"
],
"type": "object"
}