action contribly_post_contributions_id_moderate { label: "Perform a moderation action on this contribution" description: "Allows the contribution to approved of rejected." provider: contribly method: POST path: "/contributions/{id}/moderate" encoding: json input: { type: "object" properties: { action: { type: "object" required: ["id", "label", "resultingState"] properties: { id: { type: "string" } label: { type: "string" } resultingState: { type: "object" required: ["id", "label", "public"] properties: { id: { type: "string" } label: { type: "string" } public: { type: "boolean" } } } } } id: { type: "string" } notes: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "string" } }