action bigoven_get_recipe_review_review_id { label: "Get a given review by string-style ID. This will return a payload with FeaturedReply, ReplyCount. \n Recommended display is to list top-level reviews with one featured reply underneath. \n Currently, the FeaturedReply is the most recent one for that rating." provider: bigoven method: GET path: "/recipe/review/{reviewId}" encoding: json input: { type: "object" properties: { reviewId: { type: "string" } } required: ["reviewId"] additionalProperties: false } output: { type: "object" } }