action vocadb_post_api_users_id_reports { label: "post_api_users_id_reports" provider: vocadb method: POST path: "/api/users/{id}/reports" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } reason: { type: "string" } reportType: { type: "string" enum: ["MaliciousIP", "Spamming", "RemovePermissions", "Other"] } } required: ["id"] additionalProperties: false } output: { type: "boolean" } }