Post
/api/v1/video-conference.join
Join a specific video conference. Rate limiting: 2 requests per 5000ms. This endpoint also allows anonymous access for guest users.
Header parameters
X-User-Id
stringRequired
The user ID.
ExampleCkCPNctrgCDfmWLqC
X-Auth-Token
stringRequired
The authentication token.
Example1Dd4iN_ClKn5jl-xPC36snQ4s9Zd5GZnXCQuCNSKcVE
Body parameters
Example 1
{
"callId": "697887e3c8b0533020781a4a",
"state": {
"mic": true,
"cam": true
}
}object
callId
string Required
Enter the video conference call ID that you want to join.
Example697887e3c8b0533020781a4a
state
object
Object containing initial device states.
mic
boolean
Whether the microphone starts muted or unmuted.
cam
boolean
Whether the camera starts enabled or disabled.
Responses
200
OK
Example 1
{
"url": "http://g.co/meet/RocketChat_697887e3c8b0533020781a4a",
"providerName": "googlemeet",
"success": true
}object
url
string
providerName
string
success
boolean
400
Bad Request
Example 1
{
"success": false,
"error": "must have required property 'callId' [invalid-params]",
"errorType": "invalid-params"
}object
success
boolean
error
string
errorType
string
401
Unauthorized
Authorization Error
{
"status": "error",
"message": "You must be logged in to do this."
}object
status
string
message
string