action mailscript_get_domain_verify { label: "Get domain verification" description: "" provider: mailscript method: GET path: "/domains/verify/{domain}" encoding: json input: { type: "object" properties: { domain: { type: "string" } } required: ["domain"] additionalProperties: false } 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" } } } } } } }