get_product_review
Retrieve detailed product review data from the Klaviyo MCP Server by specifying the review ID, enabling insights into customer feedback for marketing analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the product review to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "ID of the product review to retrieve",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}