Get Avatar Groups Data

03 June 2016

  • Release 9.99 - added.
getavatargroupsdata (Commands)
TypeCorrade progressive command
Commandgetavatargroupsdata
DescriptionThe getavatargroupsdata command can be used to query information on groups that an agent belongs to based on the AvatarGroup structure.
Permissionsgroup
Parametersgroup, password, data, firstname, lastname (or agent by UUID)
Last ChangesRelease 9.99 - added..

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)
        ]
    )
);