action mailscript_update_key { label: "Update an address key" provider: mailscript method: PUT path: "/addresses/{address}/keys/{key}" encoding: json input: { type: "object" properties: { address: { type: "string" } key: { type: "string" } name: { type: "string" } read: { type: "boolean" } write: { type: "boolean" } } required: ["address", "key", "name", "read", "write"] 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" } } } }