action mastodon_post_api_v1_admin_accounts_id_action { label: "post_api_v1_admin_accounts_id_action" description: "Perform an action against an account and log this action in the moderation history." provider: mastodon method: POST path: "/api/v1/admin/accounts/{id}/action" encoding: json input: { type: "object" properties: { report_id: { type: "string" description: "ID of an associated report that caused this action to be taken" } send_email_notification: { type: "boolean" description: "Whether an email should be sent to the user with the above information." } text: { type: "string" description: "Additional text for clarification of why this action was taken" } type: { type: "string" description: "Type of action to be taken. Enumerable oneOf: none disable silence suspend" enum: ["none", "disable", "silence", "suspend"] } warning_preset_id: { type: "string" description: "ID of a preset warning" } } } output: { type: "object" additionalProperties: true } }