action solarvps_post_dns_domain_delete { label: "Delete dns record for a given domain" description: "Shows all your records for a specific domain. You can try example.com below." provider: solarvps method: POST path: "/dns/{domain}/delete" encoding: json input: { type: "object" properties: { domain: { type: "string" } id: { type: "string" } } required: ["domain", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }