# Retrieve product information for a specific product This method retrieves product details for a specific product ID. User needs to use product ID as a key to fetch all the details of that particular product. Endpoint: GET /products/{{prod_id}} Version: 3.0.0 Security: ## Path parameters: - `prod_id` (string, required) Enter the unique Product ID. Example: 12345 ## Response 200 fields (application/json): - `siteId` (string) Displays the unique Site ID. Example: 123456 - `productId` (integer) Displays the Product ID. Example: 12345 - `productName` (string) Displays the Product Name. Example: "Go Go Gadget Pro" - `productPrice` (integer) Displays the price per unit for the product. Example: 105 - `productPointType` (string) Displays the Product point type No - No points awarded, Yes - Points awarded Bonus - Bonus points awarded Example: "Yes" - `productMinimumLimit` (integer) Displays the minimum number of units that must be purchased to award points. Example: 10 - `productPointRatio` (integer) Displays the point ratio for the product. A ratio is a multiplier applied to a point award based on specific criteria (Product, Tier, Category, Campaign) For example, if the productPointRatio value is 3, awarded points are multiplied by 3. Example: 1 - `bonusPoint` (integer) If the productPointType is Bonus, displays the bonus amount for the product. Example: 100 - `bonusFlag` (string) Displays the status of the flag whether the Product bonus applies. (Yes/No). Example: "Yes" - `categoryId` (string) Displays the category ID of the product. Example: "Cat1" - `categoryName` (string) Displays the Category Name. Example: "Gadgets" - `categoryPointType` (string) Displays the Category point type. No - No points awarded, Yes - Points awarded Bonus - Bonus points awarded Example: "Yes" - `categoryPointRatio` (integer) Displays the point ratio for the category. A ratio is a multiplier applied to a point award based on specific criteria (Product, Tier, Category, Campaign) For example, if the categoryPointRatio value is 3, awarded points are multiplied by 3. Example: 2 - `categoryBonus` (integer) If the categoryPointType is Bonus, displays the bonus amount for the category. Example: 20 - `categoryBonusFlag` (string) Displays the status of a flag whether the Category Bonus applies. (Yes/No). Example: "Yes" - `categoryMaxPoints` (integer) Displays the maximum points that can be awarded if Category Limit Capping is enabled. Example: 20 - `categoryLimitType` (string) If the Category Limit Capping flag is enabled, displays the category limit type. Rolling or Calendar. Example: "Rolling" - `categoryLimitPeriod` (string) Displays the Category Limit Period. If the categoryLimitType is Rolling the value is the number of days. If calendar then Day/Month/Year. Applies if category limit capping flag is enabled. Example: "Day" - `upc` (string) Displays the Universal Product Code (UPC) of the product. Example: "2404120a" - `mpn` (string) Displays the Manufacturer Part Number (MPN) of the product. Example: "PPSR12345" - `gtin` (string) Displays the Global Trade Item Number (GTIN) of the product. Example: "HSI US Dental" - `brandId` (string) Displays the Brand ID of the product. Example: "VOLLRA" - `productOrderPointsLimit` (string) Displays the maximum points that can be earned on an order that includes the product. Example: 5 - `productLifetimePointsLimit` (string) Displays the maximum lifetime points that can be earned on purchases of the product. Example: 3 - `categoryOrderPointsLimit` (string) Displays the maximum number of points that can be earned on purchases of products in the category. Example: 4 - `categoryLifetimePointsLimit` (string) Displays the maximum lifetime point limit on purchases in the product category. Example: 4 - `pointAwardType` (string) Displays the point award type (Product or Category). Example: "Product"