Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remove a webhook by ID.
func (s *WebhooksSvcImpl) Remove(webhookId string) (*DeleteWebhookResponse, error) func (s *WebhooksSvcImpl) RemoveWithContext(ctx context.Context, webhookId string) (*DeleteWebhookResponse, error)
"webhook"
client := resend.NewClient("re_123456789") response, err := client.Webhooks.Remove("wh_abc123") if err != nil { panic(err) } if response.Deleted { fmt.Println("Webhook deleted successfully") }