Dnsimple.Certificates.issue_letsencrypt_certificate_renewal
You're seeing just the function
issue_letsencrypt_certificate_renewal
, go back to Dnsimple.Certificates module for more information.
Link to this function
issue_letsencrypt_certificate_renewal(client, account_id, domain_id, certificate_id, certificate_renewal_id, options \\ [])
Specs
issue_letsencrypt_certificate_renewal( Dnsimple.Client.t(), String.t() | integer(), String.t() | integer(), integer(), integer(), Keyword.t() ) :: {:ok | :error, Dnsimple.Response.t()}
Issue a pending Let's Encrypt certificate renewal order.
Note that the issuance process is async. A successful response means the issuance request has been successfully acknowledged and queued for processing.
See:
Examples
client = %Dnsimple.Client{access_token: "a1b2c3d4"}
{:ok, response} = Dnsimple.Certificates.issue_letsencrypt_certificate(client, account_id = "1010", domain_id = "example.com", certificate_id = 100, renewal_id: 200)