Wacht Bench is live — AI-assisted development for Wacht

deleteWebhookApp()

Deletes a webhook app container and associated app-level configuration.

Usage

The following example shows a basic usage of the backend client from @wacht/nextjs/server.

import { wachtClient } from '@wacht/nextjs/server';export async function example() {  const client = await wachtClient();  const appSlug: string = 'appslug';  return client.webhooks.deleteWebhookApp(appSlug);}

Signature

function deleteWebhookApp(appSlug: string): Promise<void>

Parameters

appSlug?: string | undefined;
Webhook app slug to delete.

On this page