pressable_delete_dns_record
Remove a DNS record from a Pressable WordPress site's domain zone by specifying the zone name and record ID.
Instructions
Delete a specific DNS record.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| zone_name | Yes | ||
| record_id | Yes |
Implementation Reference
- tools/dns.js:47-60 (handler)The tool definition and handler for 'pressable_delete_dns_record'.
name: 'pressable_delete_dns_record', description: 'Delete a specific DNS record.', inputSchema: { type: 'object', properties: { zone_name: { type: 'string' }, record_id: { type: 'string' } }, required: ['zone_name', 'record_id'] }, handler: async (args) => { return await api.delete(`/dns/zones/${args.zone_name}/records/${args.record_id}`); } },