action intel_get_product_list { label: "1. Find products by product id or category id" description: "Use this to get basic details of products with pagination. Can be used to generate listing page for products." provider: intel method: GET path: "/api/products/get-products" encoding: json input: { type: "object" properties: { category_id: { type: "string" } filters: { type: "string" } highlights: { type: "string" } locale_geo_id: { type: "string" } page_no: { type: "string" } per_page: { type: "string" } product_id: { type: "string" } sort: { type: "string" } } required: ["locale_geo_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }