## Delete Webhook Config

`client.webhookConfigs.delete(stringconfigID, WebhookConfigDeleteParamsparams?, RequestOptionsoptions?): void`

**delete** `/api/v1/beta/webhook-configs/{config_id}`

Delete a webhook configuration.

### Parameters

- `configID: string`

- `params: WebhookConfigDeleteParams`

  - `organization_id?: string | null`

  - `project_id?: string | null`

### Example

```typescript
import LlamaCloud from '@llamaindex/llama-cloud';

const client = new LlamaCloud({
  apiKey: process.env['LLAMA_CLOUD_API_KEY'], // This is the default and can be omitted
});

await client.webhookConfigs.delete('config_id');
```
