action mailscript_get_key { label: "Get address key" provider: mailscript method: GET path: "/addresses/{address}/keys/{key}" encoding: json input: { type: "object" properties: { address: { type: "string" } key: { type: "string" } } required: ["address", "key"] 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" } } } }