Webhooks
List webhook endpoints
Lists the webhook subscriptions owned by the authenticated API key's user. Endpoints are scoped per user rather than shared across the workspace. Events are routed to the user context that emits them; playlist.video_added is delivered to the user who adds the video, who may be a playlist editor rather than its owner.
get/v1/webhooks/endpoints
Query parameters
cursorstring
Pagination cursor returned by the previous request
Pagination cursor returned by the previous request
limitinteger
Maximum endpoints to return (default: 20, max: 100)
Example:20
Maximum endpoints to return (default: 20, max: 100)
Response
A page of webhook endpoints
Example response
{
"endpoints": [
{
"filterTypes": [
"video.created",
"export.ready"
],
"id": "ep_abc123def456",
"url": "https://example.com/webhooks/tella"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.