action openchannel_delete_reviews_review_id { label: "Remove a review" description: "- Only the review author is able to remove their review\n" provider: openchannel method: DELETE path: "/reviews/{reviewId}" encoding: json input: { type: "object" properties: { reviewId: { type: "string" } userAccountId: { type: "string" } userId: { type: "string" } } required: ["reviewId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }