deactivate_store
Deactivate a specific store by providing its Store ID to manage store settings and integrations within the ShipStation API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
storeId | Yes | Store ID to deactivate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"storeId": {
"description": "Store ID to deactivate",
"type": "number"
}
},
"required": [
"storeId"
],
"type": "object"
}