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>'
{
  "id": "msg_abc123",
  "eventType": "video.created",
  "payload": "<unknown>",
  "timestamp": "2024-01-15T10:30:00Z"
}

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

id
string
required

Unique identifier for the message

Example:

"msg_abc123"

eventType
string
required

The type of event

Example:

"video.created"

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"