get_store
Retrieve store details by providing a specific store ID using the ShipStation API MCP Server tool, facilitating efficient management of store-related data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
storeId | Yes | Store ID to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"storeId": {
"description": "Store ID to retrieve",
"type": "number"
}
},
"required": [
"storeId"
],
"type": "object"
}