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

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>