action mailscript_update_action { label: "Update an action key" provider: mailscript method: PUT path: "/actions/{action}" encoding: json input: { type: "object" properties: { action: { type: "string" } } required: ["action"] additionalProperties: false } output: { required: ["createdAt", "createdBy", "id", "name", "read", "write"] properties: { createdAt: { type: "string" format: "date-time" } createdBy: { type: "string" } id: { type: "string" } name: { type: "string" } read: { type: "boolean" } write: { type: "boolean" } } } }