Join Meet
join user to room
Content-type: application/json
end point for all api : /api
user can join as adminUser(moderator) or normal User(attendee). The main difference between the different roles is the capabilities of the meeting rooms. Generally, the moderator has more control over the meeting than the attendees.
Create meet request parameters
Field | Type | Required | Description |
---|---|---|---|
Secret | string | No | by default no need |
Type | string | Yes | must be "Join" |
Data | Json | Yes | |
Data.userName | string | Yes | user name |
Data.meetID | int | Yes | meet id |
Data.Pass | string | No | room paswoed |
Data.JoinRole | int | Yes | role |
if JoinRole set to 0 then user join as normal user .
if JoinRole set to 1 then user join as admin
Sample
{
"Secret": "",
"Type": "Join",
"Data": {
"meetID": 21,
"userName": "ali",
"Pass": "passwoed",
"JoinRole": 1
}
}
join meet response
Field | Type | value | Description |
---|---|---|---|
Status | string | "ok" | return ok |
Message | string | Response message | |
PID | string | user private id | |
Url | string | private link for user |
sample response
{
"Status": "ok",
"PID": "cipqrnhn4tji2f2kpn6g",
"Message": "",
"Url": "/user/cipqrnhn4tji2f2kpn6g"
}