Postmark\PostmarkAdminClient::rotateDKIMForDomain PHP Метод

rotateDKIMForDomain() публичный Метод

Rotate DKIM keys associated with the Domain. This key must be added to your DNS records. Including DKIM is not required, but is recommended. For more information on DKIM and its purpose, see http://www.dkim.org/
public rotateDKIMForDomain ( integer $id ) : Postmark\Models\DynamicResponseModel
$id integer The ID for the Domain for which we wish to get an updated DKIM configuration.
Результат Postmark\Models\DynamicResponseModel
    function rotateDKIMForDomain($id)
    {
        return new DynamicResponseModel($this->processRestRequest('POST', "/domains/{$id}/rotatedkim"));
    }