Webhooks
Update a webhook endpoint
PATCH/v1/webhooks/{id}requires webhook:manage
Requestcurl -X PATCH https://api.transmit.dev/v1/webhooks/{id} \
-H "Authorization: Bearer tr_v2_…" \
-H "Content-Type: application/json" \
-d '{}'Parameters
| Name | In | Notes |
|---|---|---|
id required | path | The endpoint id. |
Body
| Field | Type | Notes |
|---|---|---|
name | string | 1–100 characters |
url | string | uri |
events | string[] | at most 50 |
status | "ACTIVE" | "DISABLED" |
Responses
| Status | Meaning |
|---|---|
200 | The updated endpoint |
401 | The API key is missing, malformed, expired or revoked |
403 | The API key lacks the webhook:manage scope |
404 | No such endpoint |
Every response body is described in the OpenAPI spec, which this page is generated from.