action intel_get_product_info { label: "2. Get complete product info with product id." description: "Use this to get complete product info. No pagination supported." provider: intel method: GET path: "/api/products/get-products-info" encoding: json input: { type: "object" properties: { include_reference: { type: "string" } locale_geo_id: { type: "string" } product_id: { type: "string" } } required: ["locale_geo_id", "product_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }