Conference

10 Auguest 2016

  • Release 9.111 - added.
conference (Commands)
TypeCorrade progressive command
Commandconference
DescriptionThe conference command can be used to create, list and get a list of members of conferences.
Permissionstalk
Parametersgroup, password, action
Last ChangesRelease 9.111 - added.

The conference command can be used to create, list and get a list of members of conferences.

Command Required Parameters Required Corrade Permissions Required Group Abilities Example
conference group, password, action talk
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // Create a conference with two
            // avatars including Corrade.
            "command", "conference",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "action", "create",
            // The avatars to add to the conference.
            "avatars", wasURLEscape(
                wasListToCSV(
                    [
                        "Grim Reaper",
                        "68327034-4067-4eba-8bec-39372db52d99"
                    ]
                )
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);
Parameter Possible Value Sub Parameter Possible Value Meaning
action create avatars A CSV list of one or more avatars by name or UUID. Creates a new conference with the specified avatars. The command returns a CSV list of conference name by session UUID.
list Returns a CSV list of conference name by session UUID and by an indicator showing whether the session has been restored.
detail session A conference session UUID. Returns a CSV list of avatar names by avatar UUIDs that are members of the conference.

Remarks