action combell_delete_dns_domain_name_records_record_id { label: "Delete a record" provider: combell method: DELETE path: "/dns/{domainName}/records/{recordId}" encoding: json input: { type: "object" properties: { domainName: { type: "string" } domain_name: { type: "string" description: "The domain name." } recordId: { type: "string" } record_id: { type: "string" description: "The id of the record." } } required: ["domainName", "domain_name", "recordId", "record_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }