Dnsimple.Contacts.delete_contact
You're seeing just the function
delete_contact
, go back to Dnsimple.Contacts module for more information.
Link to this function
delete_contact(client, account_id, contact_id, options \\ [])
Specs
delete_contact( Dnsimple.Client.t(), String.t() | integer(), String.t() | integer(), Keyword.t() ) :: {:ok | :error, Dnsimple.Response.t()}
Deletes a contact from an account.
Warning: this is a destructive operation.
See:
Examples:
client = %Dnsimple.Client{access_token: "a1b2c3d4"}
{:ok, response} = Dnsimple.Contacts.delete_contact(client, account_id = "1010", contact_id = "123")