Update Webhook Endpoint
Update an existing webhook endpoint's configuration.
PATCH
/webhooks/endpoints/{endpoint_id}Update a webhook endpoint.
No parameters for this endpoint.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
endpoint_id | integer | Webhook endpoint ID |
Request Body
All fields are optional — only include fields you want to change.
| Field | Type | Description |
|---|---|---|
url | string | New HTTPS URL |
event_types | string[] | New list of event types |
is_active | boolean | Enable/disable the endpoint |
description | string | Updated description |
max_retries | integer | Updated retry count (0–5) |
timeout_ms | integer | Updated timeout |
Response
{
"status": "success",
"endpoint_id": 1
}