Postmark\PostmarkAdminClient::requestNewSenderSignatureDKIM PHP Method

requestNewSenderSignatureDKIM() public method

Cause a new DKIM key to be generated and associated with the Sender Signature. This key must be added to your email domain's DNS records. Including DKIM is not required, but is recommended. For more information on DKIM and its purpose, see http://www.dkim.org/
Deprecation: rotateDKIMForDomain replaces this method.
public requestNewSenderSignatureDKIM ( integer $id ) : Postmark\Models\DynamicResponseModel
$id integer The ID for the Sender Signature for which we wish to get an updated DKIM configuration.
return Postmark\Models\DynamicResponseModel
    function requestNewSenderSignatureDKIM($id)
    {
        return new DynamicResponseModel($this->processRestRequest('POST', "/senders/{$id}/requestnewdkim"));
    }