Skip to main content
POST
/
v1
/
webhooks
/
endpoints
Create a webhook endpoint
curl --request POST \
  --url https://api.tella.com/v1/webhooks/endpoints \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://example.com/webhooks/tella",
  "filterTypes": [
    "video.created",
    "export.ready"
  ]
}
'
{
  "id": "ep_abc123def456",
  "secret": "whsec_xyz789..."
}

Authorizations

Authorization
string
header
required

API key obtained from your Tella account settings

Body

application/json

Request body for creating a webhook endpoint

url
string<uri>
required

The URL where webhook events will be sent

Example:

"https://example.com/webhooks/tella"

filterTypes
string[]
required

Event types to subscribe to (e.g., video.created, export.ready)

Example:
["video.created", "export.ready"]

Response

Endpoint created successfully

Response when a webhook endpoint is created

id
string
required

Unique identifier for the webhook endpoint

Example:

"ep_abc123def456"

secret
string
required

Signing secret for verifying webhook payloads (shown only once)

Example:

"whsec_xyz789..."