# Get store Retrieves information for a specific store by its ID Endpoint: GET /stores/{storeId} Version: 1.0.0 Security: basicAuth ## Path parameters: - `storeId` (integer, required) Unique identifier for the store Example: 12345 ## Response 200 fields (application/json): - `storeId` (integer) Example: 12345 - `storeName` (string) Example: "My Shopify Store" - `marketplaceId` (integer) Example: 36 - `marketplaceName` (string) Example: "Shopify" - `active` (boolean) Example: true - `createDate` (string) - `modifyDate` (string) - `autoRefresh` (boolean) ## Response 400 fields (application/json): - `message` (string) Example: "Invalid request parameters" ## Response 401 fields (application/json): - `message` (string) Example: "Invalid API credentials" ## Response 404 fields (application/json): - `message` (string) Example: "Resource not found" ## Response 500 fields (application/json): - `message` (string) Example: "An internal error occurred"