/ SDKs / Unity
SDKs
Calls SDKs Unity v1
Calls SDKs Unity
Calls SDKs
Unity
Version 1

Create a room

Copy link

You can create a room for users to enter and participate in a group call. When a room has been created, a unique room ID is given to the room and its status becomes Open. Each room can host up to 100 participants and support group calls using audio.

SbRoomParams roomParams = new SbRoomParams();
SendbirdCall.CreateRoom(roomParams, (room, error) =>
{
    if( error == null ){/* A room is created with a unique identifier room.RoomId. */}
});