action powerdns_get_cryptokey { label: "Returns all data about the CryptoKey, including the privatekey." provider: powerdns method: GET path: "/servers/{server_id}/zones/{zone_id}/cryptokeys/{cryptokey_id}" encoding: json input: { type: "object" properties: { cryptokey_id: { type: "string" } server_id: { type: "string" } zone_id: { type: "string" } } required: ["cryptokey_id", "server_id", "zone_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }