Alchemy.Webhook.delete

You're seeing just the function delete, go back to Alchemy.Webhook module for more information.
Link to this function

delete(webhook)

Specs

delete(t()) :: {:ok, t()} | {:error, term()}

Deletes a webhook.

All you need for this is the webhook itself.

Examples

{:ok, wh} = Webhook.create("666", "Captain Hook")
Webhook.delete(wh)