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

# Create Webhook

## Description

Create a new webhook.

## Authentication

Required (API key or JWT token)

## Request Body

<ParamField body="url" type="string" required>
  Webhook URL endpoint
</ParamField>

<ParamField body="events" type="array" required>
  Array of event types to subscribe to
</ParamField>

<ParamField body="secret" type="string">
  Optional webhook secret for signature verification
</ParamField>

## Response

<ResponseField name="id" type="string">
  Created webhook ID
</ResponseField>

<ResponseField name="url" type="string">
  Webhook URL
</ResponseField>

<ResponseField name="events" type="array">
  Subscribed events
</ResponseField>
