action contribly_post_contributions_id_flag { label: "Raise a flag against this contribution" description: "Allows end users to bring potential issues with publicly visible content to the attention of moderators." provider: contribly method: POST path: "/contributions/{id}/flag" encoding: json input: { type: "object" properties: { date: { type: "string" format: "date-time" } email: { type: "string" } id: { type: "string" } notes: { type: "string" } type: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { date: { type: "string" format: "date-time" } email: { type: "string" } id: { type: "string" } notes: { type: "string" } type: { type: "string" } } } }