PostmarkDotNet.PostmarkAdminClient.RequestNewSignatureDKIMAsync C# (CSharp) Method

RequestNewSignatureDKIMAsync() public method

Creates a new DKIM key to be created. Until the DNS entries are confirmed, the new values will be in the DKIMPendingHost and DKIMPendingTextValue fields. After the new DKIM value is verified in DNS, the pending values will migrate to DKIMTextValue and DKIMPendingTextValue and Postmark will begin to sign emails with the new DKIM key.
public RequestNewSignatureDKIMAsync ( int signatureId ) : Task
signatureId int
return Task
        public async Task<PostmarkResponse> RequestNewSignatureDKIMAsync(int signatureId)
        {
            return await this.ProcessNoBodyRequestAsync<PostmarkResponse>
                ("/senders/" + signatureId + "/requestnewdkim", verb: HttpMethod.Post);
        }