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.
Ruby
Helo.configure do |config| config.api_key = ENV.fetch("HELO_API_KEY") end id = "550e8400-e29b-41d4-a716-446655440000" Helo::Webhooks.delete(id)
import Helo from "@helo-email/sdk"; const apiKey = process.env.HELO_API_KEY; const helo = new Helo(apiKey); await helo.webhooks.del("550e8400-e29b-41d4-a716-446655440000");
package main import ( "context" "log" "os" "github.com/helo-email/helo-sdk-go" ) func main() { client := helo.NewHelo(os.Getenv("HELO_API_KEY")) ctx := context.Background() if err := client.Webhooks.Delete(ctx, "550e8400-e29b-41d4-a716-446655440000"); err != nil { log.Fatal(err) } }
await helo.WebhookEndpoints.Delete("webhook-id");
import sdk_helo_email as helo client = helo.Helo() # reads HELO_API_KEY from the environment client.webhook_endpoints.delete("webhook-id")
{ "type": "<string>", "title": "<string>", "instance": "<string>", "status": 123, "code": "<string>", "detail": "<string>", "requestId": "<string>", "errors": {} }
Permanently removes a webhook.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Unique identifier of the webhook.
No Content