# 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

Name Description
sTitle Conference name
sConfType Conference type. It can be as follows:
• symmetric — All on screen
• asymmetric - Video lecture
• role - Role-based
bAutoAccept Flag 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

Name Description
requestId A unique request identifier
result A flag indicating whether the request was successful

See also

Last Updated: 09/12/2025