action powerdns_search_data { label: "Search the data inside PowerDNS" description: "Search the data inside PowerDNS for search_term and return at most max_results. This includes zones, records and comments. The * character can be used in search_term as a wildcard character and the ? character can be used as a wildcard for a single character." provider: powerdns method: GET path: "/servers/{server_id}/search-data" encoding: json input: { type: "object" properties: { max: { type: "string" } object_type: { type: "string" } q: { type: "string" } server_id: { type: "string" } } required: ["max", "q", "server_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }