Delete a webhook endpoint.
Scopes: webhooks:write
webhooks:write
Go
package main import( "context" "os" polargo "github.com/polarsource/polar-go" "log" ) func main() { ctx := context.Background() s := polargo.New( polargo.WithSecurity(os.Getenv("POLAR_ACCESS_TOKEN")), ) res, err := s.Webhooks.DeleteWebhookEndpoint(ctx, "<value>") if err != nil { log.Fatal(err) } if res != nil { // handle response } }
{ "error": "<string>", "detail": "<string>" }
Documentation IndexFetch the complete documentation index at: https://polar.sh/docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://polar.sh/docs/llms.txt
Use this file to discover all available pages before exploring further.
You can generate an Organization Access Token from your organization's settings.
The webhook endpoint ID.
Webhook endpoint deleted.
Was this page helpful?