Platform APIEnterprise
Join a meeting
Validate the meeting and password, admit a participant, and issue real-time connection details.
HTTP request
POST {API_ADDRESS}/rtc-meeting/join_meetingRequest example
curl --request POST "${API_ADDRESS}/rtc-meeting/join_meeting" --header "Content-Type: application/json" --header "operationID: ${OPERATION_ID}" --header "token: ${TOKEN}" --data-raw '{"meetingID":"meeting_001","userID":"user_002","password":"123456"}'Request body
| Parameter | Required | Type | Description |
|---|---|---|---|
| meetingID | Yes | string | Meeting ID. |
| userID | Yes | string | Participant user ID. |
| password | Yes | string | Meeting password; use an empty string for a meeting without a password. |
Response
data.liveKit contains the LiveKit service URL and participant access token.
Errors
See Error codes.
Permissions and limits
- Available only in OpenIM Enterprise.
- Issue connection details only after authenticating
userIDin your business system. - Do not share or persist the returned participant token outside the meeting session.
Related pages
Was this page helpful?