action api2cart_product_find { label: "ProductFind" description: "Search product in store catalog. \"Apple\" is specified here by default." provider: api2cart method: GET path: "/product.find.json" encoding: json input: { type: "object" properties: { find_params: { type: "string" } find_value: { type: "string" } find_what: { type: "string" } find_where: { type: "string" } lang_id: { type: "string" } store_id: { type: "string" } } required: ["find_value"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { product: { type: "array" items: { type: "object" properties: { description: { type: "string" } id: { type: "string" } name: { type: "string" } price: { type: "number" } } } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }