update_warehouse
Update warehouse details in ShipStation by providing the warehouse ID and JSON-formatted updated data to ensure accurate inventory and logistics management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
warehouseData | Yes | JSON string containing the updated warehouse data | |
warehouseId | Yes | Warehouse ID to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"warehouseData": {
"description": "JSON string containing the updated warehouse data",
"type": "string"
},
"warehouseId": {
"description": "Warehouse ID to update",
"type": "number"
}
},
"required": [
"warehouseId",
"warehouseData"
],
"type": "object"
}