action openchannel_post_reviews { label: "Post a review from a User and returns the new post" description: "- Only authenticated users are able to post reviews\n- Returns the newly created review\n" provider: openchannel method: POST path: "/reviews" encoding: json input: { type: "object" properties: { appId: { type: "string" } autoApprove: { type: "boolean" } customData: { type: "string" } description: { type: "string" } headline: { type: "string" } mustOwnApp: { type: "boolean" } rating: { type: "integer" } type: { type: "string" } userAccountId: { type: "string" } userId: { type: "string" } } required: ["appId", "description", "headline", "rating", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }