action powerdns_create_cryptokey { label: "Creates a Cryptokey" description: "This method adds a new key to a zone. The key can either be generated or imported by supplying the content parameter. if content, bits and algo are null, a key will be generated based on the default-ksk-algorithm and default-ksk-size settings for a KSK and the default-zsk-algorithm and default-zsk-size options for a ZSK." provider: powerdns method: POST path: "/servers/{server_id}/zones/{zone_id}/cryptokeys" 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 } }