Get Avatar Groups Data

03 June 2016

  • Release 9.99 - added.

<data Commands> Type: Corrade progressive command Command[wiki]: getavatargroupsdata Description[wiki]: The getavatargroupsdata command can be used to query information on groups that an agent belongs to based on the AvatarGroup structure. Permissions[wiki]: group Parameters[wiki]: group, password, data, firstname, lastname (or agent by UUID) Last Changes[wiki]: Release 9.99 - added.. </data>

The getavatargroupsdata command can be used to query information on groups that an agent belongs to based on the AvatarGroup structure. The command is the plural form of the getavatargroupdata command.

Command Required Parameters Required Corrade Permissions Example
getavatargroupsdata group, password, data, firstname, lastname (or agent by UUID) group
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // Get all the group titles and
            // whether the groups are listed
            // in the profile for the avatar
            // named Zedan Salik
            "command", "getavatargroupsdata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "firstname", "Zedan",
            "lastname", "Salik",
            "data", wasListToCSV(
                [
                    "GroupTitle", 
                    "ListInProfile"
                ]
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);