Dnsimple.Registrar.change_domain_delegation_to_vanity
You're seeing just the function
change_domain_delegation_to_vanity
, go back to Dnsimple.Registrar module for more information.
Link to this function
change_domain_delegation_to_vanity(client, account_id, domain_name, name_servers, options \\ [])
Specs
change_domain_delegation_to_vanity( Dnsimple.Client.t(), integer() | String.t(), String.t(), list(), keyword() ) :: {:ok | :error, Dnsimple.Response.t()}
Delegates the domain to vanity name servers.
See:
Examples:
client = %Dnsimple.Client{access_token: "a1b2c3d4"}
{:ok, response} = Dnsimple.Registrar.change_domain_delegation_to_vanity(client, account_id = 1010, domain_id = "example.com", [
"ns1.example.com",
"ns2.example.com",
"ns3.example.com",
"ns4.example.com",
])