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

# Update Webhook

> Update webhook configuration

## Path Parameters

<ParamField path="webhook_id" type="string" required>
  The ID of the webhook to update
</ParamField>

## Request Body

<ParamField body="url" type="string">
  New webhook URL
</ParamField>

<ParamField body="events" type="array">
  New event subscriptions
</ParamField>

<ParamField body="is_active" type="boolean">
  Enable or disable the webhook
</ParamField>

## Response

```json theme={null}
{
  "id": "webhook_abc123",
  "object": "webhook",
  "url": "https://yourapp.com/webhooks/outcry-new",
  "events": ["video.completed"],
  "is_active": true,
  "updated_at": 1730634100
}
```
