Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Delete a webhook endpoint.
Scopes: webhooks:write
webhooks:write
TypeScript
import { Polar } from "@polar-sh/sdk"; const polar = new Polar({ accessToken: process.env["POLAR_ACCESS_TOKEN"] ?? "", }); async function run() { await polar.webhooks.deleteWebhookEndpoint({ id: "<value>", }); } run();
{ "error": "<string>", "detail": "<string>" }
You can generate an Organization Access Token from your organization's settings.
The webhook endpoint ID.
Webhook endpoint deleted.
Was this page helpful?