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