Skip to main content
Manage webhook subscriptions. They are scoped to your user rather than shared with the workspace. See the Webhooks guide to create an endpoint, retrieve its signing secret, or delete it. Your endpoint receives:
  • video.created for videos you create through MCP
  • activity on videos you own, like views and milestones — even when a teammate or an anonymous viewer triggers it
  • playlist events, currently only for actions performed in the Tella web app

list_webhooks

List your webhook subscriptions, with cursor pagination.
string
Pagination cursor from previous response
integer
Items per page (1-100, default: 20)

update_webhook

Update a webhook subscription’s URL, event filters, or delivery status. Provide at least one of url, filterTypes, or disabled.
string
required
Webhook endpoint ID
string
New delivery URL
string[] | null
New event types to deliver, as a non-empty array (it cannot be []). Pass null to clear the filter and deliver every event type. To stop delivery entirely, use disabled: true instead
boolean
Pause (true) or resume (false) webhook delivery