Webhooks
Update a webhook endpoint
Updates the delivery URL, subscribed event types, or delivery status for a webhook endpoint.
patch/v1/webhooks/endpoints/{id}
Path parameters
idstring required
The webhook endpoint ID
Example:ep_abc123def456
The webhook endpoint ID
Request body
Example request
{
"filterTypes": [
"video.created",
"export.ready"
],
"url": "https://example.com/webhooks/tella"
}Response
Endpoint updated successfully
Example response
{
"endpoint": {
"filterTypes": [
"video.created",
"export.ready"
],
"id": "ep_abc123def456",
"url": "https://example.com/webhooks/tella"
}
}Changes
No recorded changes to this endpoint across all 2 revisions of this API.