Webhooks
Update Webhook
Updates an existing webhook endpoint. You can modify the URL, events, description, or active status. Only the fields you include in the request body will be updated.
Endpoint
PATCH
/api/v1/webhooks/:idPath Parameters
| Name | Type | Description |
|---|---|---|
idrequired | string | The unique identifier of the webhook to update |
Request Body
All fields are optional. Only include the fields you want to update.
| Name | Type | Description |
|---|---|---|
url | string | The URL that will receive webhook events |
events | string[] | Array of event types to subscribe to |
description | string | Description for this webhook |
active | boolean | Whether the webhook is active |
Response
Returns the updated webhook object.