Create Meet
Content-type: application/json
end point for all api : /api
The user is classified as a adminUser(moderator) and an 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 "CreateMeet" |
Data | Json | Yes | |
Data.Title | string | Yes | Meet Title |
Data.UserNeedPass | bool | Yes | for normal user |
Data.UserPass | string | No | |
Data.AdminNeedPass | bool | Yes | for admin user |
Data.AdminPass | string | No | |
Data.UserCount | int | Yes | number of user can join the room |
if UserNeedPass set to false then user no need password to join the room .
if UserNeedPass set to true then user need password to join the room
Sample
{
Secret: "",
Type: "CreateMeet",
Data: {
UserPass: "",
UserNeedPass: false,
AdminNeedPass: true,
AdminPass: "password",
Title: "my room",
UserCount: 100
}
}
Create meet response
Field | Type | value | Description |
---|---|---|---|
Status | string | "ok" | return ok |
Message | string | Response message | |
ID | int | id of room |
sample response
{
"Status": "ok",
"ID": 21,
"Url": "/room/21",
"Title": "my room",
"Message": ""
}