Skip to main content
POST
/
sessions
/
{id}
/
join
Join a session (get LiveKit token)
curl --request POST \
  --url https://api.tenbyte.io/v1/webinar/sessions/{id}/join \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "livekit_token": "<string>",
    "room_name": "<string>"
  },
  "timestamp": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.tenbyte.io/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Response

200 - application/json

Joined session

success
boolean
Example:

true

data
object
timestamp
integer<int64>