get_warehouse
Retrieve detailed warehouse information from the ShipStation API using the specified warehouse ID. Facilitates efficient management of warehouse-related data for streamlined operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
warehouseId | Yes | Warehouse ID to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"warehouseId": {
"description": "Warehouse ID to retrieve",
"type": "number"
}
},
"required": [
"warehouseId"
],
"type": "object"
}