Skip to main content
GET
/
v1
/
webhooks
/
messages
/
{id}
Get a specific webhook message
curl --request GET \
  --url https://api.tella.com/v1/webhooks/messages/{id} \
  --header 'Authorization: Bearer <token>'
{
  "eventType": "video.created",
  "id": "msg_abc123",
  "payload": "<unknown>",
  "timestamp": "2024-01-15T10:30:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://tella.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key obtained from your Tella account settings

Path Parameters

id
string
required

The webhook message ID

Example:

"msg_abc123"

Response

OK

A webhook message/event

eventType
string
required

The type of event

Example:

"video.created"

id
string
required

Unique identifier for the message

Example:

"msg_abc123"

payload
any
required

The event payload data

timestamp
string<date-time>
required

ISO 8601 timestamp when the event occurred

Example:

"2024-01-15T10:30:00Z"