action postmarkapp_rotate_dkimkey_for_domain { label: "Rotate DKIM Key" description: "Creates a new DKIM key to replace your current key. Until the DNS entries are confirmed,\nthe new values will be in the `DKIMPendingHost` and `DKIMPendingTextValue` fields.\nAfter the new DKIM value is verified in DNS, the pending values will migrate to\n`DKIMTextValue` and `DKIMPendingTextValue` and Postmark will begin to sign emails\nwith the new DKIM key.\n" provider: postmarkapp method: POST path: "/domains/{domainid}/rotatedkim" encoding: json input: { type: "object" properties: { "X-Postmark-Account-Token": { type: "string" } domainid: { type: "string" } } required: ["X-Postmark-Account-Token", "domainid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }