action mailscript_update_workflow { label: "Update an workflow" provider: mailscript method: PUT path: "/workflows/{workflow}" encoding: json input: { type: "object" properties: { action: { type: "string" } active: { type: "boolean" } input: { type: "string" } name: { type: "string" } trigger: { type: "string" } workflow: { type: "string" } } required: ["action", "input", "name", "workflow"] additionalProperties: false } output: { type: "object" additionalProperties: true } }