action rumble_stop_task { label: "Signal that a task should be stopped or canceledThis will also remove recurring and scheduled tasks" provider: rumble method: POST path: "/org/tasks/{task_id}/stop" encoding: json input: { type: "object" properties: { task_id: { type: "string" format: "uuid" } } required: ["task_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }