action mailscript_add_domain { label: "Claim a new Domain" description: "" provider: mailscript method: POST path: "/domains" encoding: json input: { required: ["domain"] properties: { domain: { type: "string" } } } output: { required: ["domain", "records"] properties: { domain: { type: "string" } records: { type: "array" items: { type: "object" required: ["type", "name", "value"] properties: { name: { type: "string" } type: { type: "string" } value: { type: "string" } } } } } } }