action openchannel_patch_reviews_review_id { label: "Update a review fields" description: "- Only the review author is able to update their review\n- Returns the newly updated review\n" provider: openchannel method: PATCH 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: ["reviewId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }