Remove a Group Dynamically from Corrade's Configuration

7 October 2016

  • Release 9.135 - added.

<data Commands> Type: Corrade progressive command Command[wiki]: removeconfigurationgroup Description[wiki]: The removeconfigurationgroup command can be used to remove a group from Corrade's configuration. Permissions[wiki]: system Parameters[wiki]: group, password, target Last Changes[wiki]: Release 9.135 - added. </data>

The addconfigurationgroup command can be used to add a group to Corrade's configuration.

Command Required Parameters Required Corrade Permissions Example
removeconfigurationgroup group, password, target system
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // Remove a configured group.
            "command", "removeconfigurationgroup",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            // The name or the UUID of a group.
            "target", "b2eaaaea-995a-01d3-10eb-712d3b2d68f4",
            "callback", wasURLEscape(URL)
        ]
    )
);

Notes