> ## 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.

# webhook_targets.delete()

> Delete a webhook delivery target.

Delete a webhook target.

**Required scope: `admin`**

```python theme={null}
result = await mesa.webhook_targets.delete(webhook_target_id="wh_123")
print(result.success)
```

## Options

<ParamField path="webhook_target_id" type="str" required>
  Webhook target ID.
</ParamField>

<ParamField path="org" type="str | None">
  Organization override.
</ParamField>

## Response

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