delete_warehouse
Remove a warehouse from your ShipStation account by specifying its ID, streamlining warehouse management and maintaining accurate inventory details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
warehouseId | Yes | Warehouse ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"warehouseId": {
"description": "Warehouse ID to delete",
"type": "number"
}
},
"required": [
"warehouseId"
],
"type": "object"
}