action solarvps_post_dns_domain_add { label: "Add dns record for given domain" description: "You can try example.com below. Types allowed are: A CNAME NS TXT MX SRV SPF" provider: solarvps method: POST path: "/dns/{domain}/add" encoding: json input: { type: "object" properties: { content: { type: "string" } domain: { type: "string" } name: { type: "string" } prio: { type: "string" } ttl: { type: "string" } type: { type: "string" } } required: ["content", "domain", "name", "prio", "ttl", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }