action powerdns_notify_zone { label: "Send a DNS NOTIFY to all slaves." description: "Fails when zone kind is not Master or Slave, or master and slave are disabled in the configuration. Only works for Slave if renotify is on. Clients MUST NOT send a body." provider: powerdns method: PUT path: "/servers/{server_id}/zones/{zone_id}/notify" encoding: json input: { type: "object" properties: { server_id: { type: "string" } zone_id: { type: "string" } } required: ["server_id", "zone_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }