> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mesa.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# webhookTargets.delete()

> Delete a webhook delivery target.

Delete a webhook target by ID.

**Required scope: `admin`**

```ts theme={null}
await mesa.webhookTargets.delete({ webhookTargetId: 'wht_123' });
```

## Options

<ParamField path="webhookTargetId" type="string" required>
  Webhook target ID.
</ParamField>

<ParamField path="org" type="string | undefined">
  Organization override.
</ParamField>

## Response

<ResponseField name="success" type="true">
  Whether the operation succeeded.
</ResponseField>
