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

disabledboolean

Pause or resume delivery to the endpoint

filterTypesstring[] nullable

New event types to deliver. Pass a non-empty array to replace the filter, or null to clear it so every event type is delivered. Omit to leave it unchanged.

urlstring uri

New delivery URL

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.