action postmarkapp_request_new_dkimkey_for_sender_signature { label: "Request a new DKIM Key" description: "Requests a new DKIM key to be created. 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: "/senders/{signatureid}/requestnewdkim" encoding: json input: { type: "object" properties: { "X-Postmark-Account-Token": { type: "string" } signatureid: { type: "string" } } required: ["X-Postmark-Account-Token", "signatureid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }