Dnsimple.Domains.accept_push
You're seeing just the function
accept_push
, go back to Dnsimple.Domains module for more information.
Link to this function
accept_push(client, account_id, push_id, attributes, options \\ [])
Specs
accept_push( Dnsimple.Client.t(), String.t() | integer(), integer(), map(), Keyword.t() ) :: {:ok | :error, Dnsimple.Response.t()}
Accepts a pending push. Requires a contact_id
to be provided that
will be used as the domain contact.
See:
Examples:
client = %Dnsimple.Client{access_token: "a1b2c3d4"}
{:ok, response} = Dnsimple.Domains.accept_push(client, account_id = 1010, push_id = 6789, %{
contact_id: 123
})