Get Avatar Group Data
getavatargroupdata (Commands) |
Type | Corrade progressive command |
Command | getavatargroupdata |
Description | The getavatargroupdata command can be used to query information on a group member to be found in the AvatarGroup structure. |
Permissions | group |
Parameters | group , password , data , firstname , lastname (or agent by UUID) |
Last Changes | Release 9.81 - renamed from getgroupmemberdata . |
The getavatargroupdata
command can be used to query information on a group member to be found in the AvatarGroup structure.The command is the singular form of the getavatargroupsdata command.
Command | Required Parameters | Required Corrade Permissions | Example |
getavatargroupdata | group , password , data , firstname , lastname (or agent by UUID) | group | llInstantMessage(CORRADE,
wasKeyValueEncode(
[
// gets the selected group title
// and whether the group appears
// in the profile of the group
// member named Zedan Salik
"command", "getavatargroupdata",
"group", wasURLEscape(GROUP),
"password", wasURLEscape(PASSWORD),
"firstname", "Zedan",
"lastname", "Salik",
"data", wasListToCSV(
[
"GroupTitle",
"ListInProfile"
]
),
"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. |