action openchannel_post_reviews_review_id { label: "Update a review from a User and returns the new post" description: "- Only the review author is able to update their review\n- Returns the newly updated review\n" provider: openchannel method: POST path: "/reviews/{reviewId}" encoding: json input: { type: "object" properties: { customData: { type: "string" } description: { type: "string" } headline: { type: "string" } rating: { type: "integer" } reviewId: { type: "string" } userAccountId: { type: "string" } userId: { type: "string" } } required: ["description", "headline", "rating", "reviewId", "userAccountId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }