Dnsimple.Domains.list_delegation_signer_records
You're seeing just the function
list_delegation_signer_records
, go back to Dnsimple.Domains module for more information.
Link to this function
list_delegation_signer_records(client, account_id, domain_id, options \\ [])
Specs
list_delegation_signer_records( Dnsimple.Client.t(), String.t() | integer(), String.t() | integer(), Keyword.t() ) :: {:ok | :error, Dnsimple.Response.t()}
Lists the delegation signer records for the domain.
See:
Examples:
client = %Dnsimple.Client{access_token: "a1b2c3d4"}
{:ok, response} = Dnsimple.Domains.list_delegation_signer_records(client, account_id = 1000, domain_id = 123)
{:ok, response} = Dnsimple.Domains.list_delegation_signer_records(client, account_id = 1000, domain_id = "example.io")