createConference

TrueConf7/5/26About 2 min

createConference

Create a group conference

Receiving a positive response ("result" : true) indicates that the command has been accepted for execution. The result will arrive in a separate notification. Description

The successful conference start will be indicated in one of these ways:

  1. Upon changing the current connection status to 5, in the On_appStateChanged notification
  2. The notification On_conferenceCreated will be received
void createConference(string sTitle, string sConfType, bool bAutoAccept, string[] InviteList)

Parameters

NameDescription
sTitleConference name
sConfTypeConference type. It can be as follows:
• symmetric — All on screen
• asymmetric - Video lecture
• role - Role-based
bAutoAcceptFlag allowing participants to automatically join conference
InviteList An array of strings with unique identifies of users, to whom an invitation to the conference will be sent
(There is no need to include the accound under which VideoSDK is authorized (that is, yourself) in the `inviteList`; it will automatically be added as the first participant with the owner role.

Response example

{
    "method" : "createConference",
    "requestId" : "1",
    "result" : true
}

Response Parameters

NameDescription
requestIdA unique request identifier
resultA flag indicating whether the request was successful

See also

Last Updated: