# Get product Retrieves a single product by its ID Endpoint: GET /products/{productId} Version: 1.0.0 Security: basicAuth ## Path parameters: - `productId` (integer, required) The system-generated identifier for the Product Example: 123456789 ## Response 200 fields (application/json): - `productId` (integer) Example: 123456789 - `sku` (string) Example: "BEAU-000" - `name` (string) Example: "Beautiful" - `price` (number) - `active` (boolean) Example: true ## 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"