action api2cart_product_review_list { label: "ProductReviewList" description: "Get reviews of a specific product." provider: api2cart method: GET path: "/product.review.list.json" encoding: json input: { type: "object" properties: { count: { type: "integer" } exclude: { type: "string" } ids: { type: "string" } page_cursor: { type: "string" } params: { type: "string" } product_id: { type: "string" } response_fields: { type: "string" } start: { type: "integer" } status: { type: "string" } store_id: { type: "string" } } required: ["product_id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { reviews: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } created_time: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } format: { type: "string" } value: { type: "string" } } } custom_fields: { type: "object" } customer_id: { type: "string" } email: { type: "string" } id: { type: "string" } message: { type: "string" } nick_name: { type: "string" } product_id: { type: "string" } rating: { type: "number" } ratings: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } id: { type: "string" } name: { type: "string" } value: { type: "integer" } } } } status: { type: "string" } summary: { type: "string" } } } } total_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }