Moderate a Group

21 May 2016

  • Release 9.78 - added optional parameter target.

21 December 2014

  • Release 7.34 - added group Corrade permission.
moderate (Commands)
TypeCorrade progressive command
Commandmoderate
DescriptionCorrade can be made to silence or unsilence an agent within a group for both voice and text chat.
Permissionsgroup
Parametersgroup, password, firstname, lastname (or agent by UUID), type, silence
Last ChangesRelease 9.78 - added optional parameter target.

Corrade can be made to silence or unsilence an agent within a group for both voice and text chat.

Command Required Parameters Required Corrade Permissions Required Group Abilities Example
moderate group, password, firstname, lastname (or agent by UUID), type, silence group Chat→Moderate group Chat
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            "command", "moderate",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            // or "agent", "69ce412b-dffc-436d-86ff-d788bfa66d9d"
            "firstname", "Trumpet",
            "lastname", "Man",
            // can be either voice or text
            "type", "voice",
            // either true or false
            "silence", "true"
        ]
    )
);
Optional Parameter Possible Value Description
target A group name or UUID. The group to act upon. If this parameter is omitted, then the command acts upon the configured group passed to the group parameter.