Get Group Members Data

<data Commands> Type: Corrade progressive command Command[wiki]: getgroupmembersdata Description[wiki]: The getgroupmembersdata command can be used to query information on group members to be found in the GroupMember structure. Permissions[wiki]: group Parameters[wiki]: group, password, data Last Changes[wiki]: none </data>

The getgroupmembersdata command can be used to query information on group members to be found in the GroupMember structure.

Command Required Parameters Required Corrade Permissions Example
getgroupmembersdata group, password, data group
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // get all online members
            "command", "getgroupmembersdata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "data", wasListToCSV(
                [
                    "OnlineStatus",
                    "ID"
                ]
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);
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.

Notes